Created
March 3, 2021 11:19
-
-
Save progapandist/520cfa7cb3011731dba2d2607dabbb9d to your computer and use it in GitHub Desktop.
This file contains 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
import mapboxgl from "mapbox-gl"; // ES6 import | |
import "mapbox-gl/dist/mapbox-gl.css"; // Import module's CSS | |
import MapboxDirections from "@mapbox/mapbox-gl-directions/dist/mapbox-gl-directions"; | |
import "@mapbox/mapbox-gl-directions/dist/mapbox-gl-directions.css"; | |
const fitMapToMarkers = (map, markers) => { | |
const bounds = new mapboxgl.LngLatBounds(); | |
markers.forEach((marker) => bounds.extend([marker.lng, marker.lat])); | |
map.fitBounds(bounds, { padding: 70, maxZoom: 15, duration: 0 }); | |
}; | |
const initMapbox = () => { | |
const mapElement = document.getElementById("map"); | |
// ALWAYS check if selector selected | |
if (mapElement) { | |
console.log("Selected the map element!"); | |
// only build a map if there's a div#map to inject into | |
mapboxgl.accessToken = mapElement.dataset.mapboxApiKey; | |
const map = new mapboxgl.Map({ | |
container: "map", | |
style: "mapbox://styles/mapbox/streets-v10", | |
}); | |
const markers = JSON.parse(mapElement.dataset.markers); | |
markers.forEach((marker) => { | |
new mapboxgl.Marker().setLngLat([marker.lng, marker.lat]).addTo(map); | |
}); | |
map.addControl( | |
new MapboxDirections({ | |
accessToken: mapboxgl.accessToken, | |
}), | |
"top-left" | |
); | |
fitMapToMarkers(map, markers); | |
} | |
}; | |
export { initMapbox }; // ES6 module export |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment