Reputation: 869
I'm using openlayers3 and trying to animate ol.Feature:
var point = new ol.Feature({
geometry: new ol.geom.Point([0, 0])),
name: 'test',
});
I want this point to pulsate. In OpenLayers2 I've used jQuery animate on svgR property of feature. How can I do this in OpenLayers3? I've created a jsFiddle with demo.
Upvotes: 2
Views: 8555
Reputation: 1
Like Philipp, I too used the below link as reference for animating a feature.
http://www.acuriousanimal.com/thebookofopenlayers3/chapter06_02_markers_overlays.html
Here is a JSFiddle Demo. Its basically adding a CSS3 animation class to a div and attaching that to an open layers overlay.
CSS
.pulsate {
border: 10px solid red;
background: tranparent;
-webkit-border-radius: 60px;
-moz-border-radius: 60px;
border-radius: 60px;
height: 50px;
width: 50px;
-webkit-animation: pulse 1s ease-out;
-moz-animation: pulse 1s ease-out;
animation: pulse 1s ease-out;
-webkit-animation-iteration-count: infinite;
-moz-animation-iteration-count: infinite;
animation-iteration-count: infinite;
position: absolute;
top: -25px;
left: -25px;
z-index: 1;
opacity: 0;
}
@-moz-keyframes pulse {
0% {
-moz-transform: scale(0);
opacity: 0.0;
}
25% {
-moz-transform: scale(0);
opacity: 0.1;
}
50% {
-moz-transform: scale(0.1);
opacity: 0.3;
}
75% {
-moz-transform: scale(0.5);
opacity: 0.5;
}
100% {
-moz-transform: scale(1);
opacity: 0.0;
}
}
@-webkit-keyframes pulse {
0% {
-webkit-transform: scale(0);
opacity: 0.0;
}
25% {
-webkit-transform: scale(0);
opacity: 0.1;
}
50% {
-webkit-transform: scale(0.1);
opacity: 0.3;
}
75% {
-webkit-transform: scale(0.5);
opacity: 0.5;
}
100% {
-webkit-transform: scale(1);
opacity: 0.0;
}
}
JS
var map = new ol.Map({
target: 'map',
layers: [
new ol.layer.Tile({
source: new ol.source.OSM()
})
],
view: new ol.View({
center: ol.proj.transform([-87.623177, 41.881832], 'EPSG:4326', 'EPSG:3857'),
zoom: 8
})
});
var dummyFeature = {
"type": "FeatureCollection",
"features": [{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [-87.89760243,
41.89884569
]
},
"id": 12345,
"properties": {
"owner": "ABC",
"mta": 3
}
}]
};
function pointToProj(coordinates) {
var lon = parseFloat(coordinates[0]);
var lat = parseFloat(coordinates[1]);
return ol.proj.transform([lon, lat], 'EPSG:4326', 'EPSG:3857');
}
function pulsatingCircleAnimation(coor) {
var element = document.createElement('div');
element.setAttribute('class', 'pulsate');
var coorProjection = pointToProj(coor);
return new ol.Overlay({
element: element,
position: coorProjection,
positioning: 'center-center',
offset: [1, 1]
});
}
//Adds the animated div to the ol overlay and returns the same
function addAnimation(feature) {
var coordinates;
var overlay;
coordinates = feature.geometry.coordinates;
overlay = pulsatingCircleAnimation(coordinates);
map.addOverlay(overlay);
}
addAnimation(dummyFeature.features[0]);
map.updateSize();
Upvotes: 0
Reputation: 14168
To animate a marker along a route I use setInterval
to change the position of an ol.Overlay
.
Upvotes: 0
Reputation: 649
You can use the code from:
http://acanimal.github.io/thebookofopenlayers3/chapter06_02_markers_overlays.html
which uses ol.Overlay(s) and css to display the animations.
I don´t know an easy way to achieve something similar via features / vector layer though.
Upvotes: 3
Reputation: 869
I've achieved pulsate animation, using map.on('postcompose') event. Here is the solution:
var animate = function (pulsateCount) {
var style = point.getStyle(),
image = style.getImage(),
r = image.getRadius(),
currR = r,
maxR = 2 * r,
sign = 1;
vectorLayer.getSource().removeFeature(point);
var pulsate = function (event) {
var vectorContext = event.vectorContext;
if (currR > maxR) {
sign = -1;
pulsateCount--;
} else if (currR < r) {
sign = 1;
if (!pulsateCount) {
map.un('postcompose', pulsate);
vectorLayer.getSource().addFeature(point);
return;
}
}
currR += sign * 0.1;
vectorContext.drawFeature(point, new ol.style.Style({
image: new ol.style.Circle({
radius: currR,
fill: image.getFill(),
stroke: image.getStroke()
})
}));
map.render();
};
map.on('postcompose', pulsate);
};
And fiddle. It works fine, but it looks like a hack, so I don't like it. I guess there should be much cleaner solution, but I can't find it. My answer is actual for OpenLayers v3.0.0-beta.5
Upvotes: 1