Использование только вершин строки не дает плавной анимации.Вы можете видеть это в примере OpenLayers https://openlayers.org/en/v4.6.5/examples/feature-move-animation.html, где маркер перемещается намного быстрее по прямым участкам.Если вам нужно плавное движение по прямым линиям, как в примере с OpenLayers 2, вам нужно использовать .getCoordinateAt()
, чтобы вычислить, где на линии вы должны быть в любое время.Вот демоверсия, основанная на примере анимации маркера, но также вычисляющая положения между вершинами, показывающая линейную линию из примера змеи.Вы также можете нарисовать свои собственные прямые линии и плавно наблюдать их анимацию.
var style = new ol.style.Style({
stroke: new ol.style.Stroke({
width: 4,
color: 'red'
})
});
var raster = new ol.layer.Tile({
source: new ol.source.OSM()
});
var vector = new ol.layer.Vector({
source: new ol.source.Vector(),
style: style
});
var map = new ol.Map({
layers: [raster, vector],
target: 'map',
view: new ol.View()
});
var xhr = new XMLHttpRequest();
xhr.open('GET', 'https://raw.githubusercontent.com/IvanSanchez/Leaflet.Polyline.SnakeAnim/master/route.js');
xhr.onload = function() {
// read the route coordinates
eval(xhr.responseText);
// reverse the route
var geom = new ol.geom.LineString(route.reverse());
// change Lat/Lon to Lon/Lat
geom.applyTransform(function(c){ return c.reverse(); });
geom.transform('EPSG:4326', map.getView().getProjection());
map.getView().fit(geom.getExtent(), { size: map.getSize() });
var snake = new ol.Feature();
vector.getSource().addFeature(snake);
animate_line(snake, geom, 30000);
}
xhr.send();
function animate_line(feature, linestring, duration) {
var length = linestring.getLength();
var length_shown = 0;
var coords = linestring.getCoordinates();
var coords_shown = [coords[0], coords[0]];
var geom_shown = new ol.geom.LineString(coords_shown);
feature.setGeometry(geom_shown);
var coordcount = 1;
var start = new Date().getTime();
var listenerKey = map.on('postcompose', animate);
function animate() {
var elapsed = new Date().getTime() - start;
var toAdd = length*elapsed/duration - length_shown;
var point = linestring.getCoordinateAt(Math.min(elapsed/duration, 1));
// restart from last intermediate point and remove it
var newPart = new ol.geom.LineString(coords_shown.slice(-1));
coords_shown.pop();
// add vertices until required length exceeded
while (coordcount < coords.length && newPart.getLength() <= toAdd) {
newPart.appendCoordinate(coords[coordcount]);
coords_shown.push(coords[coordcount]);
coordcount++;
}
// replace overrun vertex with intermediate point
coords_shown.pop();
coordcount--;
coords_shown.push(point);
geom_shown.setCoordinates(coords_shown);
length_shown += toAdd;
if (elapsed > duration) {
ol.Observable.unByKey(listenerKey);
}
map.render();
}
}
draw = new ol.interaction.Draw({
source: vector.getSource(),
type: 'LineString'
});
draw.on('drawend',function(evt){
geom = evt.feature.getGeometry();
evt.feature.setGeometry(undefined);
animate_line(evt.feature, geom, 6000);
});
map.addInteraction(draw);
html, body, .map {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
<link href="https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.3.0/css/ol.css" rel="stylesheet" />
<script src="https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.3.0/build/ol.js"></script>
<div id="map" class="map"></div>