AlexLavoie42 / Nuxt-Mapbox

Elegant Mapbox integration with Nuxt
81 stars 11 forks source link

Missing 'style.load' event support ? #98

Closed Theo-Rige closed 5 months ago

Theo-Rige commented 6 months ago

How can I use the 'style.load' event : https://docs.mapbox.com/mapbox-gl-js/api/map/#map.event:style.load ?

AlexLavoie42 commented 6 months ago

I think this event just got missed, although there may have been a good reason to not have it that I can't remember. I will try to add it for the next update.

For now you can do this:

useMapboxBeforeLoad(MAP_ID, (map) => {
    map.on('style.load', () => {...})
})