-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
48 lines (35 loc) · 1.81 KB
/
index2.html
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>Cycling Traffic Stress</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- Font Awsome (legend and locate icons)-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/css/font-awesome.min.css" rel="stylesheet">
<!-- For checkboxes icons -->
<link rel="stylesheet" href="https://draganarad.github.io/mapData/css/all.css">
<!-- Locate leaflet plugin -->
<link rel="stylesheet" href="https://draganarad.github.io/mapData/css/L.Control.Locate.min.css" />
<!-- Leaflet -->
<!-- popup click for markers is broken in Safari on Mac in Leaflet 1.7.1 -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.7.0/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin="anonymous" />
<!-- My custom legend stuff -->
<link rel="stylesheet" href="https://draganarad.github.io/mapData/css/style.css">
</head>
<body>
<div id="map" style="width: 600px; height: 400px;"></div>
<!-- Leaflet -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.7.0/leaflet.js"
integrity="sha512-hpMvVJdw+9kBp8UQSq1njqeg83Sq26LIyUuoyayajxRqCjZm4gsRGuanShvtDr8YHugnrxopaqXxS5rHDCrJ/Q=="
crossorigin="anonymous"></script>
<!-- Locate Leaflet plugin -->
<!-- https://github.com/domoritz/leaflet-locatecontrol-->
<script src="https://draganarad.github.io/mapData/lib/L.Control.Locate.js"></script>
<!-- Ajax Leaflet plugin -->
<!-- https://github.com/calvinmetcalf/leaflet-ajax -->
<script src="https://draganarad.github.io/mapData/lib/leaflet.ajax.min.js"></script>
<script src="https://draganarad.github.io/mapData/src/stressmap.js"></script>
</body>
</html>