Source: layer/heatmap/HeatMapTile.js

/*
 * Copyright 2003-2006, 2009, 2017, 2020 United States Government, as represented
 * by the Administrator of the National Aeronautics and Space Administration.
 * All rights reserved.
 *
 * The NASAWorldWind/WebWorldWind platform is licensed under the Apache License,
 * Version 2.0 (the "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License
 * at http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed
 * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations under the License.
 *
 * NASAWorldWind/WebWorldWind also contains the following 3rd party Open Source
 * software:
 *
 *    ES6-Promise – under MIT License
 *    libtess.js – SGI Free Software License B
 *    Proj4 – under MIT License
 *    JSZip – under MIT License
 *
 * A complete listing of 3rd Party software notices and licenses included in
 * WebWorldWind can be found in the WebWorldWind 3rd-party notices and licenses
 * PDF found in code  directory.
 */
define([], function(){
    /**
     * Constructs a HeatMapTile.
     *
     * Returns one tile for the HeatMap information. It is basically an interface specifying the public methods
     * properties and default configuration. The logic itself is handled in the subclasses.
     *
     * @alias HeatMapTile
     * @constructor
     * @classdesc Tile for the HeatMap layer visualising data on a canvas using shades of gray scale.
     *
     * @param data {Object[]} Array of information constituting points in the map.
     * @param options {Object}
     * @param options.sector {Sector} Sector representing the geographical area for this tile. It is used to correctly
     *  interpret the location of the MeasuredLocation on the resulting canvas.
     * @param options.width {Number} Width of the Canvas to be created in pixels.
     * @param options.height {Number} Height of the Canvas to be created in pixels.
     * @param options.radius {Number} Radius of the data point in pixels. The radius represents the blur applied to the
     *  drawn shape
     * @param options.incrementPerIntensity {Number} The ratio representing the 1 / measure for the maximum measure.
     * @param options.intensityGradient {Object} Keys represent the opacity between 0 and 1 and the values represent
     *  color strings.
     */
    var HeatMapTile = function(data, options) {
        this._data = data;

        this._sector = options.sector;

        this._canvas = this.createCanvas(options.width, options.height);

        this._width = options.width;
        this._height = options.height;
        this._intensityGradient = options.intensityGradient;

        this._radius = options.radius;

        this._incrementPerIntensity = options.incrementPerIntensity;
    };

    /**
     * Returns the drawn HeatMapTile in the form of URL.
     * @return {String} Data URL of the tile.
     */
    HeatMapTile.prototype.url = function() {
        return this.draw().toDataURL();
    };

    /**
     * Returns the whole Canvas. It is then possible to use further. This one is actually used in the
     * HeatMapLayer mechanism so if you want to provide some custom implementation of Canvas creation in your tile,
     * change this method.
     * @return {HTMLCanvasElement} Canvas Element representing the drawn tile.
     */
    HeatMapTile.prototype.canvas = function() {
        return this.draw();
    };

    /**
     * Draws the shapes on the canvas. Create shapes based on the gradient. Each of the gradient colors has associated
     * shape, which defines how strong will be the center point.
     * @protected
     * @returns {HTMLCanvasElement}
     */
    HeatMapTile.prototype.draw = function() {
        var shapes = [];
        for(var intensityKey in this._intensityGradient) {
            if(this._intensityGradient.hasOwnProperty(intensityKey)) {
                shapes.push({
                    shape: this.shape(intensityKey),
                    min: intensityKey
                });
            }
        }

        var ctx = this._canvas.getContext('2d');

        var percentage, shapeToDraw = null;
        for(var i = 0; i < this._data.length; i++) {
            var location = this._data[i];
            percentage = location.measure * this._incrementPerIntensity;
            ctx.globalAlpha = percentage;
            shapes.forEach(function(shape){
                if(percentage > shape.min) {
                    shapeToDraw = shape.shape;
                }
            });
            ctx.drawImage(shapeToDraw,
                          this.longitudeInSector(location, this._sector, this._width)
                              - (shapeToDraw.width / 2),
                          this._height
                              - this.latitudeInSector(location, this._sector, this._height)
                              - (shapeToDraw.height / 2));
        }

        return this._canvas;
    };

    /**
     * Creates canvas element of given size.
     * @protected
     * @param width {Number} Width of the canvas in pixels
     * @param height {Number} Height of the canvas in pixels
     * @returns {HTMLCanvasElement} Created the canvas
     */
    HeatMapTile.prototype.createCanvas = function(width, height) {
        var canvas = document.createElement('canvas');
        canvas.width = width;
        canvas.height = height;
        return canvas;
    };

    /**
     * Creates a canvas containing the circle of the right size. THe default shape is circle, but subclasses can
     * change this behavior.
     * 
     * @protected
     * @returns {HTMLCanvasElement} Canvas representing the circle.
     */
    HeatMapTile.prototype.shape = function(measure) {
        var shape = this.createCanvas(this._radius * 2, this._radius * 2),
            ctx = shape.getContext('2d');

        var gradient = ctx.createRadialGradient(this._radius, this._radius, 0, this._radius, this._radius, this._radius);
        gradient.addColorStop(0, "rgba(0,0,0," + measure + ")");
        gradient.addColorStop(1, "rgba(0,0,0,0)");

        ctx.beginPath();

        ctx.arc(this._radius, this._radius, this._radius, 0, Math.PI * 2, true);

        ctx.fillStyle = gradient;
        ctx.fill();

        ctx.closePath();

        return shape;
    };

    /**
     * Calculates position in pixels of the point based on its latitude.
     * @param location {Location} Location to transform
     * @param sector {Sector} Sector to which transform
     * @param height {Number} Height of the tile to draw to.
     * @private
     * @returns {Number} Position on the height in pixels.
     */
    HeatMapTile.prototype.latitudeInSector = function(location, sector, height) {
        var sizeOfArea = sector.maxLatitude - sector.minLatitude;
        var locationInArea = location.latitude - sector.minLatitude;
        return Math.ceil((locationInArea / sizeOfArea) * height);
    };

    /**
     * Calculates position in pixels of the point based on its longitude.
     * @param location {Location} Location to transform
     * @param sector {Sector} Sector to which transform
     * @param width {Number} Width of the tile to draw to.
     * @private
     * @returns {Number} Position on the width in pixels.
     */
    HeatMapTile.prototype.longitudeInSector = function(location, sector, width) {
        var sizeOfArea = sector.maxLongitude - sector.minLongitude ;
        var locationInArea = location.longitude - sector.minLongitude;
        return Math.ceil((locationInArea / sizeOfArea) * width);
    };

    return HeatMapTile;
});