smithmicro / mapbox-gl-circle

A *google.maps.Circle* replacement for Mapbox GL JS
https://smithmicro.github.io/mapbox-gl-circle/
ISC License
55 stars 26 forks source link

Some advice to implement it with vue-mapbox-gl ? #88

Closed albertpb closed 4 years ago

albertpb commented 4 years ago

This works

onMapLoaded(e) {
    this.map = e.map;

    new MapboxCircle({ lat: 39.984, lng: -75.343 }, 25000, {
        editable: true,
        minRadius: 1500,
        fillColor: '#29AB87',
    }).addTo(this.map);
},