Rename ol.Projection to ol.proj.Projection

This commit is contained in:
Tim Schaub
2013-08-30 14:19:05 -06:00
parent b192335e56
commit 3b20cc7b53
29 changed files with 119 additions and 119 deletions
+2 -3
View File
@@ -2,12 +2,11 @@ goog.provide('ol.IView2D');
goog.provide('ol.View2DState');
goog.require('ol.Coordinate');
goog.require('ol.Projection');
/**
* @typedef {{center: ol.Coordinate,
* projection: ol.Projection,
* projection: ol.proj.Projection,
* resolution: number,
* rotation: number}}
*/
@@ -31,7 +30,7 @@ ol.IView2D.prototype.getCenter = function() {
/**
* @return {ol.Projection|undefined} Map projection.
* @return {ol.proj.Projection|undefined} Map projection.
*/
ol.IView2D.prototype.getProjection = function() {
};