vue-mapbox-gl
vue-mapbox-gl copied to clipboard
How to add custom icons with Markers?
There is a way to add custom image for all the markers at once using
map.loadImage("imageURL",function(error, image) {
if (error) throw error;
});
But what if I want different images for each geoJson data?