From https://developers.google.com/closure/compiler/docs/js-for-compiler: "The type declaration and additional comment are optional. If you provide a type declaration, put the declaration on a separate line."
12 lines
168 B
JavaScript
12 lines
168 B
JavaScript
goog.provide('ol.sphere.NORMAL');
|
|
|
|
goog.require('ol.Sphere');
|
|
|
|
|
|
/**
|
|
* The normal sphere.
|
|
* @const
|
|
* @type {ol.Sphere}
|
|
*/
|
|
ol.sphere.NORMAL = new ol.Sphere(6370997);
|