vue-mapbox icon indicating copy to clipboard operation
vue-mapbox copied to clipboard

Vuejs 2 components for interacting with mapbox-gl-js

Results 105 vue-mapbox issues
Sort by recently updated
recently updated
newest added

Tried the app in the example and the map is not showing in the latest build. It's just blank.. I can see its calling mapbox API and tiles behind the...

When I bind an event listener to MglGeojsonLayer it doesn't seem to emit the event ```html ``` This is my template, am I doing something wrong? handleClick isn't seeming to...

As stated in Mapbox-GL documentation https://docs.mapbox.com/mapbox-gl-js/api/map/#map#setfeaturestate. I get an `Error: The sourceLayer parameter must be provided for vector source types.` otherwise. This is the example from the very same documentation...

Recently I have problems with my unit tests when I need to test an own component which uses a Vue MapBox component like **MglMarker**. That's the component I trying test:...

See https://docs.mapbox.com/mapbox-gl-js/api/map/#map.event:styleimagemissing

Looks like the last merged PR was almost a year ago. Are you still accepting PRs? Are you no longer maintaining this package? My workplace could use this quite a...

My component : ```html La carte des thés import Mapbox from "mapbox-gl"; import {MglMap} from "vue-mapbox"; export default { components: { MglMap, // MglMarker, }, data() { return { accessToken:...

Whenever I dynamically create a marker for example by using the v-for loop. The map goes back to the center every time I add a marker or update a marker....

Hello, I am including vue-mapbox via cdn like so: ``` ``` and then in the JS section, am registering component like so: ``` const appMap = new Vue({ el: '.culturemap__page',...

HI! I have a MglGeojsonLayer component with polygon `` And some method like this: `this.mapStyle = 'mapbox://styles/mapbox/light-v9';` After map style is changed, the polygon disappears. What is the right way...