mirror of
https://github.com/Viglino/ol-ext.git
synced 2026-01-25 17:36:21 +00:00
62 lines
2.0 KiB
JavaScript
62 lines
2.0 KiB
JavaScript
/* Copyright (c) 2015 Jean-Marc VIGLINO,
|
|
released under the CeCILL-B license (French BSD license)
|
|
(http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt).
|
|
*/
|
|
/** Pulse a point on postcompose
|
|
* @param {ol.coordinates} point to pulse
|
|
* @param {ol.pulse.options} pulse options param
|
|
* - projection {ol.projection||String} projection of coords
|
|
* - duration {Number} animation duration in ms, default 2000
|
|
* - easing {ol.easing} easing function, default ol.easing.upAndDown
|
|
* - width {Number} line width, default 2
|
|
* - color {ol.color} line color, default red
|
|
*/
|
|
ol.Map.prototype.animExtent = function(extent, options)
|
|
{ var listenerKey;
|
|
options = options || {};
|
|
|
|
// Change to map's projection
|
|
if (options.projection)
|
|
{ extent = ol.proj.transformExtent (extent, options.projection, this.getView().getProjection());
|
|
}
|
|
|
|
// options
|
|
var start = new Date().getTime();
|
|
var duration = options.duration || 1000;
|
|
var easing = options.easing || ol.easing.upAndDown;
|
|
var width = options.lineWidth || 2;
|
|
var color = options.color || 'red';
|
|
|
|
// Animate function
|
|
function animate(event)
|
|
{ var frameState = event.frameState;
|
|
var ratio = frameState.pixelRatio;
|
|
var elapsed = frameState.time - start;
|
|
if (elapsed > duration) ol.Observable.unByKey(listenerKey);
|
|
else
|
|
{ var elapsedRatio = elapsed / duration;
|
|
var p0 = this.getPixelFromCoordinate([extent[0],extent[1]]);
|
|
var p1 = this.getPixelFromCoordinate([extent[2],extent[3]]);
|
|
|
|
var context = event.context;
|
|
context.save();
|
|
context.scale(ratio,ratio);
|
|
context.beginPath();
|
|
var e = easing(elapsedRatio)
|
|
context.globalAlpha = easing(1 - elapsedRatio);
|
|
context.lineWidth = width;
|
|
context.strokeStyle = color;
|
|
context.rect(p0[0], p0[1], p1[0]-p0[0], p1[1]-p0[1]);
|
|
context.stroke();
|
|
context.restore();
|
|
// tell OL3 to continue postcompose animation
|
|
frameState.animate = true;
|
|
}
|
|
}
|
|
|
|
// Launch animation
|
|
listenerKey = this.on('postcompose', animate, this);
|
|
this.renderSync();
|
|
}
|
|
|