ol-ext
Version:
A set of cool extensions for OpenLayers (ol) in node modules structure
64 lines (57 loc) • 1.83 kB
JavaScript
/*
Copyright (c) 2020 Jean-Marc VIGLINO,
released under the CeCILL-B license (French BSD license)
(http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt).
*/
import ol_particule_Base from './Base.js'
/** Raindrop particules to display clouds over the map
* @constructor
* @extends {ol_particule_Base}
* @param {*} options
* @param {ol.Overlay} options.overlay
* @param {ol.pixel} options.coordinate the position of the particule
*/
var ol_particule_RainDrop =class olparticuleRainDrop extends ol_particule_Base {
constructor(options) {
options = options || {};
super(options);
this.size = 0;
// Drops
var canvas = document.createElement('canvas');
canvas.width = 100;
canvas.height = 100;
var ctx = canvas.getContext('2d');
var grd = ctx.createRadialGradient(50, 50, 0, 50, 50, 50);
grd.addColorStop(0, 'rgba(128,128,192,.8');
grd.addColorStop(1, 'rgba(128,128,192,0');
this.image = canvas;
ctx.fillStyle = grd;
ctx.fillRect(0, 0, canvas.width, canvas.height);
}
/** Draw the particule
* @param {CanvasRenderingContext2D } ctx
*/
draw(ctx) {
if (this.size > 0) {
ctx.save();
ctx.translate(this.coordinate[0], this.coordinate[1]);
ctx.globalAlpha = this.size / 50;
ctx.scale(1 - this.size / 50, 1 - this.size / 50);
ctx.drawImage(this.image, -50, -50);
ctx.restore();
}
}
/** Update the particule
* @param {number} dt timelapes since last call
*/
update(dt) {
if (this.size > 0 || Math.random() < .01) {
if (this.size <= 0) {
this.size = 50;
this.coordinates = this.getRandomCoord();
}
this.size = this.size - Math.round(dt / 20);
}
}
}
export default ol_particule_RainDrop