blob: ab90904408340a1606c6969ac9ab375835d997be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="{{ url_for('static', filename='css/leaflet.css') }}"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin=""/>
<link rel="stylesheet" href="{{ url_for('static', filename='css/leaflet_mods.css') }}"/>
<script src="{{ url_for('static', filename='js/leaflet.js') }}"
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
crossorigin=""></script>
<script src="{{ url_for('static', filename='js/map.js') }}"></script>
</head>
<body>
<div id="map"></div>
</body>
</html>
|