Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add a simple Marker in Mapbox GL?

Since the Mapbox GL documentation doesn't talk about anything regarding adding simple markers to LngLat coordinates, and really only has documentation on how to add custom markers, I was hoping someone could tell me how you're supposed to get Mapbox-gl.js to actually add a marker to passed LngLat coords.

like image 485
PMills Avatar asked Jul 29 '16 21:07

PMills


1 Answers

Good news! In the newest release of mapbox-gl-js (v0.21.0) a new Marker class was added that provides the functionality you're looking for:

https://docs.mapbox.com/mapbox-gl-js/api/#marker

https://docs.mapbox.com/mapbox-gl-js/example/custom-marker-icons/

like image 165
mollymerp Avatar answered Sep 28 '22 02:09

mollymerp