phegman / vue-mapbox-gl

A Vue.js component for Mapbox GL JS
GNU General Public License v3.0
270 stars 33 forks source link

How to add custom icons with Markers? #99

Open ftahery-teleo opened 3 years ago

ftahery-teleo commented 3 years ago

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?