-
Notifications
You must be signed in to change notification settings - Fork 212
Expand file tree
/
Copy pathmap.html
More file actions
45 lines (45 loc) · 1.93 KB
/
map.html
File metadata and controls
45 lines (45 loc) · 1.93 KB
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
<!doctype html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta charset="utf-8" />
<title>ROS Users of the World</title>
<link href="https://fonts.googleapis.com/css?family=Overpass" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="rosmap.css" />
<script src="https://kit.fontawesome.com/bf045d01fa.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/js-yaml/4.1.0/js-yaml.min.js"
integrity="sha512-CSBhVREyzHAjAFfBlIBakjoRUKp5h7VSweP0InR/pAJyptH7peuhCsqAI/snV+TwZmXZqoUklpXp6R6wMnYf5Q=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link
rel="stylesheet"
href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin=""
/>
<script
src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
crossorigin=""
></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet.markercluster@1.1.0/dist/MarkerCluster.css" />
<link rel="stylesheet" href="https://unpkg.com/leaflet.markercluster@1.1.0/dist/MarkerCluster.Default.css" />
<script src="https://unpkg.com/leaflet.markercluster@1.1.0/dist/leaflet.markercluster.js"></script>
<script src="rosmap.js"></script>
</head>
<body onload="initialize()">
<div id="text">
<h1>ROS Users of the World</h1>
<ul id="legend"></ul>
<p>
Add to or edit the map by changing the yaml files in
<a href="https://github.com/DLu/ros_map/tree/main/data">this repository</a>, or by emailing
<a href="mailto:david AT metrorobots DOT COM">the map maintainer</a>.
</p>
</div>
<div id="map-canvas"></div>
</body>
</html>