I've created a MapBox instance with:
var map = new mapboxgl.Map({
container : 'map',
style : 'mapbox://styles/mapbox/streets-v9'
});
I need to clear all markers, and have tried things like map.remove(marker) on each one, and a few other things, but nothing seems to work.
Is there a simple function call to just clear all markers from the map?
EDIT: Different from How to remove all layers and features from map? because I get "eachLayer is not a recognised function" (or similar) in console.
You saw this? https://www.mapbox.com/mapbox-gl-js/api/#marker#remove
Instead of map.remove maybe try marker.remove:
var marker = new mapboxgl.Marker().addTo(map);
marker.remove();