haldis/app/templates/maps.html

40 lines
923 B
HTML
Raw Permalink Normal View History

2019-02-14 15:43:07 +00:00
{% extends "layout.html" %}
{% set active_page = "map" -%}
2019-02-14 15:43:07 +00:00
{% import "utils.html" as util %}
{% block container %}
<div id="mapid" class="large-map"></div>
{% endblock %}
2019-02-14 15:43:07 +00:00
{% block styles %}
{{ super() }}
<link rel="stylesheet" href="{{ url_for('static', filename='css/leaflet.css') }}">
<link rel="stylesheet" href="{{url_for('static', filename='css/map.css')}}">
2019-02-14 15:43:07 +00:00
{% endblock %}
{% block scripts %}
{{super()}}
<script src="{{ url_for('static', filename='js/leaflet.js')}}"></script>
<script src="{{ url_for('static', filename='js/map.js' ) }}"></script>
<script>
let locations = [];
{% for loc in locations -%}
{% if loc.address %}
locations.push({
"address": "{{loc.address}}",
"name": "{{loc.name}}",
"url": "{{ url_for('general_bp.location', location_id=loc.id) }}"
});
{% endif %}
{%- endfor %}
2019-04-06 17:05:41 +00:00
map.setView([51.0231119, 3.7102741], 14);
2019-02-14 18:17:02 +00:00
loadmap(locations);
</script>
{% endblock %}