-
Notifications
You must be signed in to change notification settings - Fork 1
/
change-language.html
56 lines (55 loc) · 1.79 KB
/
change-language.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
<html>
<head>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<style>
body {
margin: 0;
padding: 0;
}
#map {
min-height: 500px;
height: 100%;
width: 100%;
}
select {
z-index: 1000;
position: absolute;
top: 5px;
right: 5px;
padding: 5px;
background: white;
}
</style>
</head>
<body>
<div id="map">
<select id="languages">
<option value="en">English</option>
<option value="fr">French</option>
<option value="it">Italian</option>
<option value="es">Spanish</option>
<option value="de">German</option>
<option value="nl">Dutch</option>
<option value="zh">Chinese</option>
</select>
</div>
<script>
// Don't forget to replace <YOUR_ACCESS_TOKEN> by your own access token
const accessToken = '<YOUR_ACCESS_TOKEN>';
const map = L.map('map').setView([48.7965913, 2.3210938], 3);
const layer = L.tileLayer(
`https://tile.jawg.io/jawg-dark/{z}/{x}/{y}.png?lang=en&access-token=${accessToken}`, {
attribution: '<a href="https://jawg.io" title="Tiles Courtesy of Jawg Maps" target="_blank" class="jawg-attrib">© <b>Jawg</b>Maps</a> | <a href="https://www.openstreetmap.org/copyright" title="OpenStreetMap is open data licensed under ODbL" target="_blank" class="osm-attrib">© OSM contributors</a>',
maxZoom: 22,
}
).addTo(map);
document
.getElementById('languages')
.addEventListener('change', event => {
const language = event.target.value;
layer.setUrl(`https://tile.jawg.io/jawg-dark/{z}/{x}/{y}.png?lang=${language}&access-token=${accessToken}`);
});
</script>
</body>
</html>