43 lines
422 B
JavaScript
43 lines
422 B
JavaScript
/**
|
|
* @externs
|
|
* @see http://proj4js.org/
|
|
*/
|
|
|
|
|
|
/**
|
|
* @type {Function}
|
|
*/
|
|
var proj4 = function() {};
|
|
|
|
|
|
/**
|
|
* @type {Object.<string, string>}
|
|
*/
|
|
proj4.defs;
|
|
|
|
|
|
|
|
/**
|
|
* @constructor
|
|
* @param {Object|string} proj
|
|
*/
|
|
proj4.Proj = function(proj) {};
|
|
|
|
|
|
/**
|
|
* @type {string}
|
|
*/
|
|
proj4.Proj.prototype.axis;
|
|
|
|
|
|
/**
|
|
* @type {string}
|
|
*/
|
|
proj4.Proj.prototype.units;
|
|
|
|
|
|
/**
|
|
* @type {number}
|
|
*/
|
|
proj4.Proj.prototype.to_meter;
|