Rename ol.Projection to ol.proj.Projection
This commit is contained in:
@@ -2,16 +2,16 @@ goog.provide('ol.proj.EPSG3857');
|
||||
|
||||
goog.require('goog.array');
|
||||
goog.require('goog.asserts');
|
||||
goog.require('ol.Projection');
|
||||
goog.require('ol.ProjectionUnits');
|
||||
goog.require('ol.math');
|
||||
goog.require('ol.proj');
|
||||
goog.require('ol.proj.Projection');
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
* @extends {ol.Projection}
|
||||
* @extends {ol.proj.Projection}
|
||||
* @param {string} code Code.
|
||||
*/
|
||||
ol.proj.EPSG3857 = function(code) {
|
||||
@@ -22,7 +22,7 @@ ol.proj.EPSG3857 = function(code) {
|
||||
global: true
|
||||
});
|
||||
};
|
||||
goog.inherits(ol.proj.EPSG3857, ol.Projection);
|
||||
goog.inherits(ol.proj.EPSG3857, ol.proj.Projection);
|
||||
|
||||
|
||||
/**
|
||||
@@ -67,7 +67,7 @@ ol.proj.EPSG3857.CODES = [
|
||||
* Projections equal to EPSG:3857.
|
||||
*
|
||||
* @const
|
||||
* @type {Array.<ol.Projection>}
|
||||
* @type {Array.<ol.proj.Projection>}
|
||||
*/
|
||||
ol.proj.EPSG3857.PROJECTIONS = goog.array.map(
|
||||
ol.proj.EPSG3857.CODES,
|
||||
|
||||
Reference in New Issue
Block a user