Created
March 3, 2021 11:32
-
-
Save progapandist/5529a885553740a0d1457d4b974ed56b 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
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); | |
}); | |
const directions = new MapboxDirections({ | |
accessToken: mapboxgl.accessToken, | |
unit: "metric", | |
profile: "mapbox/cycling", | |
}); | |
map.addControl(directions, "top-left"); | |
directions.setOrigin("Berlin"); | |
directions.setDestination("Brandenburg"); | |
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