-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenmaptiles.html
35 lines (34 loc) · 1.31 KB
/
openmaptiles.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>leaflet-pmtiles OpenMapTiles demo</title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<link href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&family=Work+Sans:[email protected]&family=Petrona:[email protected]&family=Raleway:[email protected]" rel="stylesheet">
</head>
<body>
<div id="map" style="position: absolute; top: 0; left:0; bottom:0; right: 0;">
</div>
<div style="position: absolute; z-index: 999"><h2>
Font
<select id="selectedFont">
<option value="Inter">Inter</option>
<option value="Raleway">Raleway</option>
<option value="Work Sans">Work Sans</option>
<option value="Manrope">Manrope</option>
<option value="Petrona">Petrona</option>
</select>
Language
<select id="selectedLanguage">
<option value="Locale">Locale</option>
<option value="Latin">Latin</option>
<option value="English">English</option>
<option value="French">French</option>
</select>
</h2></div>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="https://unpkg.com/protomaps-leaflet@latest/dist/protomaps-leaflet.js"></script>
<script src="leaflet-pmtiles.js"></script>
<script src="openmaptiles.js"></script>
</body>
</html>