blob: 694fc2da9eaec606fa9a45ff96a569d653815b46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php
declare(strict_types=1);
use Fisharebest\Webtrees\View;
?>
<?php View::push('javascript') ?>
<script src="https://www.gstatic.com/charts/loader.js"></script>
<script>
google.charts.load(
'current',
{
'packages': [
'corechart',
'geochart',
'bar'
],
// Note: you will need to get a mapsApiKey for your project.
// See: https://developers.google.com/chart/interactive/docs/basic_load_libs#load-settings
'mapsApiKey': ''
}
);
</script>
<?php View::endpush() ?>
|