mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 03:17:07 +00:00
29 lines
788 B
HTML
29 lines
788 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block extra_head %}
|
|
{{ map_markers|json_script:'map-markers' }}
|
|
|
|
{% load staticfiles %}
|
|
<script src="{% static 'js/map.js' %}"></script>
|
|
|
|
<script async defer
|
|
src="https://maps.googleapis.com/maps/api/js?key={{ settings.GOOGLE_MAPS_API_KEY }}&callback=initMap"
|
|
type="text/javascript"></script>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item">
|
|
<a href="{% url 'people:person.list' %}">People</a>
|
|
</li>
|
|
<li class="breadcrumb-item active" aria-current="page">Map</li>
|
|
</ol>
|
|
</nav>
|
|
|
|
<h1>Map</h1>
|
|
|
|
<div id="map" style="height: 800px; width: 100%"></div>
|
|
|
|
{% endblock %}
|