summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/sheet_simple_map.html
blob: bf25db653f9764163183d15561f8a9eaa8265bae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% if geo_item.point_2d or geo_item.multi_polygon %}
<div class="window-map"
     id="map-{{window_id}}-{{geo_item.SLUG}}-{{geo_item.pk}}"></div>

<script type="text/javascript">
{% if geo_item.point_source == 'P' or not geo_item.multi_polygon %}
var {{geo_item.SLUG}}{{geo_item.pk}} = {{geo_item.point_2d_geojson|safe}};
display_map("map-{{window_id}}-{{geo_item.SLUG}}-{{geo_item.pk}}", {{geo_item.SLUG}}{{geo_item.pk}});
{% else %}
var {{geo_item.SLUG}}{{geo_item.pk}} = {{geo_item.multi_polygon_geojson|safe}};
display_map("map-{{window_id}}-{{geo_item.SLUG}}-{{geo_item.pk}}", null, {{geo_item.SLUG}}{{geo_item.pk}});
{% endif %}
</script>

{% endif %}