Add externs for GeoJSON crs member
This commit is contained in:
+28
-1
@@ -34,12 +34,25 @@ var GeoJSONCRS = function() {};
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @type {!Object.<string, *>}
|
* @type {!GeoJSONCRSName|!GeoJSONLink}
|
||||||
*/
|
*/
|
||||||
GeoJSONCRS.prototype.properties;
|
GeoJSONCRS.prototype.properties;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @constructor
|
||||||
|
*/
|
||||||
|
var GeoJSONCRSName = function() {};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @type {string}
|
||||||
|
*/
|
||||||
|
GeoJSONCRSName.prototype.name;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @constructor
|
* @constructor
|
||||||
* @extends {GeoJSONObject}
|
* @extends {GeoJSONObject}
|
||||||
@@ -106,3 +119,17 @@ GeoJSONFeatureCollection.prototype.features;
|
|||||||
* @type {!Array.<number>|undefined}
|
* @type {!Array.<number>|undefined}
|
||||||
*/
|
*/
|
||||||
GeoJSONFeatureCollection.prototype.bbox;
|
GeoJSONFeatureCollection.prototype.bbox;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @constructor
|
||||||
|
* @extends {GeoJSONObject}
|
||||||
|
*/
|
||||||
|
var GeoJSONLink = function() {};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @type {string}
|
||||||
|
*/
|
||||||
|
GeoJSONLink.prototype.href;
|
||||||
|
|||||||
Reference in New Issue
Block a user