A plugin of maptalks.js to draw markers with animation.
- Install with npm:
npm install maptalks.animatemarker
. - Download from dist directory.
- Use unpkg CDN:
https://unpkg.com/maptalks.animatemarker/dist/maptalks.animatemarker.min.js
As a plugin, maptalks.animatemarker
must be loaded after maptalks.js
in browsers.
<script type="text/javascript" src="https://unpkg.com/maptalks/dist/maptalks.min.js"></script>
<script type="text/javascript" src="https://unpkg.com/maptalks.animatemarker/dist/maptalks.animatemarker.min.js"></script>
<script>
var data = [marker1, marker2, marker3];
var animMarkerLayer = new maptalks.AnimateMarkerLayer('anim-markers', data).addTo(map);
</script>
IE 9-11, Chrome, Firefox, other modern and mobile browsers.
AnimateMarkerLayer
is a subclass of maptalks.VectorLayer and inherits all the methods of its parent.
new maptalks.AnimateMarkerLayer(id, data, options)
- id String layer id
- data Marker[] layer data, an array of maptalks.Marker
- options Object options
- animation String animation effects: 'scale', 'fade' or 'scale,fade' ('scale,fade' by default)
- animationDuration Number the animation duration (3000 by default)
- randomAnimation Boolean animation begins randomly (true by default)
- animationOnce Boolean whether animation only run once (false by default)
- fps Number fps of animation (24 by default)
- Other options defined in maptalks.VectorLayer
config layer's options and redraw the layer if necessary
animMarkerLayer.config('animation', 'scale');
Returns this
export the layer's JSON.
var json = animMarkerLayer.toJSON();
var animLayer = maptalks.Layer.fromJSON(json);
Returns Object
We welcome any kind of contributions including issue reportings, pull requests, documentation corrections, feature requests and any other helps.
The only source file is index.js
.
It is written in ES6, transpiled by babel and tested with mocha and expect.js.
- Install dependencies
$ npm install
- Watch source changes and generate runnable bundle repeatedly
$ gulp watch
- Tests
$ npm test
- Watch source changes and run tests repeatedly
$ gulp tdd
- Package and generate minified bundles to dist directory
$ gulp minify
- Lint
$ npm run lint