-
Notifications
You must be signed in to change notification settings - Fork 1
/
add-popup.html
42 lines (40 loc) · 1.38 KB
/
add-popup.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
<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%;
}
</style>
</head>
<body>
<div id="map"></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([16.233131, -61.572646], 10);
L.tileLayer(
`https://tile.jawg.io/jawg-sunny/{z}/{x}/{y}.png?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);
const marker = L.marker([15.966636, -61.653889]).addTo(map);
marker.bindPopup('<b>A popup that is shown when you click on a marker</b>');
// Basic popup definition
L.popup({
closeOnClick: false
})
.setLatLng([16.263131, -61.602646])
.setContent('<b>Hello world!</b><br/> I am a popup.')
.addTo(map);
</script>
</body>
</html>