blob: 7c7711de9a207ca617028e0aa80949940be64d3e (
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
|
[%
google_maps_url = "https://maps.googleapis.com/maps/api/js?v=3";
IF c.config.GOOGLE_MAPS_API_KEY;
google_maps_url = google_maps_url _ "&key=" _ c.config.GOOGLE_MAPS_API_KEY;
END;
map_js = [
google_maps_url,
version('/js/OpenLayers/OpenLayers.google.js'),
version('/js/map-OpenLayers.js'),
version('/js/map-google-ol.js'),
]
%]
[% map_sub_links = BLOCK %]
<a class="hidden-nojs" id="map_layer_toggle" href="">[% loc('Satellite') %]</a>
[% END %]
[% map_html = BLOCK %]
[% INCLUDE maps/openlayers.html %]
[% UNLESS around_page %]
<p id="sub_map_links">
[% map_sub_links %]
</p>
[% END %]
[% END %]
|