Factor out ol.TransformFunction
This commit is contained in:
@@ -12,3 +12,4 @@ goog.require('ol.TileBounds');
|
||||
goog.require('ol.TileCoord');
|
||||
goog.require('ol.TileGrid');
|
||||
goog.require('ol.TileUrl');
|
||||
goog.require('ol.TransformFunction');
|
||||
|
||||
@@ -5,12 +5,7 @@ goog.require('goog.asserts');
|
||||
goog.require('goog.math.Coordinate');
|
||||
goog.require('goog.object');
|
||||
goog.require('ol.Extent');
|
||||
|
||||
|
||||
/**
|
||||
* @typedef {function(goog.math.Coordinate): goog.math.Coordinate}
|
||||
*/
|
||||
ol.TransformFunction;
|
||||
goog.require('ol.TransformFunction');
|
||||
|
||||
|
||||
/**
|
||||
|
||||
9
src/ol/transformfunction.js
Normal file
9
src/ol/transformfunction.js
Normal file
@@ -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