remove descriptions from JSDoc type tags
This commit is contained in:
@@ -4,7 +4,8 @@ goog.require('ol.canvas');
|
||||
|
||||
|
||||
/**
|
||||
* Is supported.
|
||||
* @const
|
||||
* @type {boolean} Is supported.
|
||||
* @type {boolean}
|
||||
*/
|
||||
ol.renderer.canvas.SUPPORTED = ol.canvas.SUPPORTED;
|
||||
|
||||
@@ -81,9 +81,9 @@ ol.renderer.canvas.VectorLayer = function(mapRenderer, layer) {
|
||||
|
||||
/**
|
||||
* Geometry filters in rendering order.
|
||||
* TODO: these will go away shortly (in favor of one call per symbolizer type)
|
||||
* @private
|
||||
* @type {Array.<ol.filter.Geometry>}
|
||||
* TODO: these will go away shortly (in favor of one call per symbolizer type)
|
||||
*/
|
||||
this.geometryFilters_ = [
|
||||
new ol.filter.Geometry(ol.geom.GeometryType.POINT),
|
||||
|
||||
@@ -2,7 +2,8 @@ goog.provide('ol.renderer.dom.SUPPORTED');
|
||||
|
||||
|
||||
/**
|
||||
* Is supported.
|
||||
* @const
|
||||
* @type {boolean} Is supported.
|
||||
* @type {boolean}
|
||||
*/
|
||||
ol.renderer.dom.SUPPORTED = true;
|
||||
|
||||
@@ -4,7 +4,8 @@ goog.require('ol.webgl');
|
||||
|
||||
|
||||
/**
|
||||
* Is supported.
|
||||
* @const
|
||||
* @type {boolean} Is supported.
|
||||
* @type {boolean}
|
||||
*/
|
||||
ol.renderer.webgl.SUPPORTED = ol.webgl.SUPPORTED;
|
||||
|
||||
Reference in New Issue
Block a user