Factor out ol.TransformFunction
This commit is contained in:
@@ -12,3 +12,4 @@ goog.require('ol.TileBounds');
|
|||||||
goog.require('ol.TileCoord');
|
goog.require('ol.TileCoord');
|
||||||
goog.require('ol.TileGrid');
|
goog.require('ol.TileGrid');
|
||||||
goog.require('ol.TileUrl');
|
goog.require('ol.TileUrl');
|
||||||
|
goog.require('ol.TransformFunction');
|
||||||
|
|||||||
@@ -5,12 +5,7 @@ goog.require('goog.asserts');
|
|||||||
goog.require('goog.math.Coordinate');
|
goog.require('goog.math.Coordinate');
|
||||||
goog.require('goog.object');
|
goog.require('goog.object');
|
||||||
goog.require('ol.Extent');
|
goog.require('ol.Extent');
|
||||||
|
goog.require('ol.TransformFunction');
|
||||||
|
|
||||||
/**
|
|
||||||
* @typedef {function(goog.math.Coordinate): goog.math.Coordinate}
|
|
||||||
*/
|
|
||||||
ol.TransformFunction;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
goog.provide('ol.TransformFunction');
|
||||||
|
|
||||||
|
goog.require('goog.math.Coordinate');
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @typedef {function(goog.math.Coordinate): goog.math.Coordinate}
|
||||||
|
*/
|
||||||
|
ol.TransformFunction;
|
||||||
Reference in New Issue
Block a user