20 lines
321 B
JavaScript
20 lines
321 B
JavaScript
/**
|
|
* @externs
|
|
* @see http://proj4js.org/
|
|
*/
|
|
|
|
|
|
/**
|
|
* @type {Function}
|
|
*/
|
|
var proj4 = function() {};
|
|
|
|
|
|
/**
|
|
* @param {string} name
|
|
* @param {(string|Object)=} opt_def
|
|
* @return {undefined|Object.<string, Object.<{axis: string, units: string,
|
|
* to_meter: number}>>}
|
|
*/
|
|
proj4.defs = function(name, opt_def) {};
|