-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchampaign_county_map.html
101 lines (74 loc) · 4.08 KB
/
champaign_county_map.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_484c021280c263d5a21b25e3fcea911f {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
</head>
<body>
<div class="folium-map" id="map_484c021280c263d5a21b25e3fcea911f" ></div>
</body>
<script>
var map_484c021280c263d5a21b25e3fcea911f = L.map(
"map_484c021280c263d5a21b25e3fcea911f",
{
center: [40.1397, -88.2001],
crs: L.CRS.EPSG3857,
zoom: 10,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_50a2541f98e0874f9d1ac8357b59712d = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca target=\"_blank\" href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca target=\"_blank\" href=\"http://www.openstreetmap.org/copyright\"\u003eODbL\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
);
tile_layer_50a2541f98e0874f9d1ac8357b59712d.addTo(map_484c021280c263d5a21b25e3fcea911f);
var marker_125b7991b2c0946e1581fabdc4b0ecb9 = L.marker(
[40.1164, -88.2434],
{}
).addTo(map_484c021280c263d5a21b25e3fcea911f);
var marker_a7e177cd715ebda9d48d70525727f200 = L.marker(
[40.1234, -88.2615],
{}
).addTo(map_484c021280c263d5a21b25e3fcea911f);
var marker_3faf02c3d567179b6c1620b853a2c39e = L.marker(
[40.1629, -88.1506],
{}
).addTo(map_484c021280c263d5a21b25e3fcea911f);
var marker_8394c4815e0393898bb77b323b905617 = L.marker(
[40.2284, -88.2614],
{}
).addTo(map_484c021280c263d5a21b25e3fcea911f);
var marker_fa26a8bb9167b6becceacefd68158c25 = L.marker(
[40.0971, -88.2017],
{}
).addTo(map_484c021280c263d5a21b25e3fcea911f);
</script>
</html>