Created
May 4, 2020 15:18
-
-
Save skorasaurus/588ddb571ee3b318b87e2d74bc8c24a9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Attach a popup to a marker instance</title> | |
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" /> | |
<script src="https://api.mapbox.com/mapbox-gl-js/v1.10.0/mapbox-gl.js"></script> | |
<link href="https://api.mapbox.com/mapbox-gl-js/v1.10.0/mapbox-gl.css" rel="stylesheet" /> | |
<style> | |
body { margin: 0; padding: 0; } | |
#map { position: absolute; top: 0; bottom: 0; width: 100%; } | |
</style> | |
</head> | |
<body> | |
<style> | |
#marker { | |
background-image: url('https://docs.mapbox.com/mapbox-gl-js/assets/washington-monument.jpg'); | |
background-size: cover; | |
width: 50px; | |
height: 50px; | |
border-radius: 50%; | |
cursor: pointer; | |
} | |
.mapboxgl-popup { | |
max-width: 200px; | |
} | |
</style> | |
<div id="map"></div> | |
<script> | |
mapboxgl.accessToken = 'pk.eyJ1Ijoic2tvcmFzYXVydXMiLCJhIjoiaEdGTUZWTSJ9.osOC8tWU3bMaNprVNoEu7g'; | |
var monument = [-77.0353, 38.8895]; | |
var map = new mapboxgl.Map({ | |
container: 'map', | |
style: 'mapbox://styles/mapbox/light-v10', | |
center: monument, | |
zoom: 15 | |
}); | |
// create the popup | |
var popup = new mapboxgl.Popup({ offset: 25 }).setText( | |
'Construction on the Washington Monument began in 1848.' | |
); | |
// create DOM element for the marker | |
var el = document.createElement('div'); | |
el.id = 'marker'; | |
// create the marker | |
new mapboxgl.Marker(el) | |
.setLngLat(monument) | |
.setPopup(popup) // sets a popup on this marker | |
.addTo(map); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment