MovingMarker plugin extension for vue2-leaflet package
npm install vue2-leaflet-plugin-movingmarkerThanks to Louis Mazel (https://github.com/LouisMazel/vue2-leaflet-movingmarker)
This is a movingmarker plugin extension for vue2-leaflet package
bash
npm install --save vue2-leaflet-movingmarker
`Demo
You can see the demo code in the file Map.vueUsage
$3
something like this
`html
v-for="driver in drivers"
:key="driver.uuid"
v-if="driver.location"
:lat-lng="getLocation(driver)"
:icon="getIcon(driver.uuid)"
@click="setCurrentDriver(driver)"
ref="driverMarker"
:duration="2000"
/>
`
$3
#### option 1
In the same template file, at