index.html
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Animation - Custom animation</title>
<style type="text/css">
html,body{margin:0px;height:100%;width:100%}
.container{width:100%;height:100%}
</style>
<link rel="stylesheet" href="https://unpkg.com/maptalks/dist/maptalks.css">
<script type="text/javascript" src="https://unpkg.com/maptalks/dist/maptalks.min.js"></script>
<body>
<div id="map" class="container"></div>
<script>
var map = new maptalks.Map('map', {
center: [-0.113049,51.498568],
zoom: 14,
baseLayer: new maptalks.TileLayer('base', {
urlTemplate: 'https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png',
subdomains: ["a","b","c","d"],
attribution: '© <a href="http://osm.org">OpenStreetMap</a> contributors, © <a href="https://carto.com/">CARTO</a>'
})
});
var layer = new maptalks.VectorLayer('vector').addTo(map);
var marker = new maptalks.Marker([-0.113049,51.498568], {
'symbol' :{
'markerType' : 'ellipse',
'markerWidth' : 50,
'markerHeight' : 50,
'markerFill' : 'rgb(216,115,149)',
'markerFillOpacity' : 0.8,
'markerLineColor' : '#fff',
'markerLineWidth' : 3
}
}).addTo(layer);
var targetStyles = {
'symbol' : {
'markerWidth' : 200,
'markerHeight' : 200
}
};
// animate by maptalks.animation.Animation
var player = maptalks.animation.Animation.animate(
targetStyles,
{
duration : 1000,
easing : 'out'
},
// callback of each frame
function step(frame) {
if (frame.state.playState === 'running') {
marker.updateSymbol(frame.styles.symbol);
}
}
);
setTimeout(function () {
player.play();
}, 600);
</script>
</body>
</html>