Factor out ol.TransformFunction

This commit is contained in:
Tom Payne
2012-07-06 13:23:43 +02:00
committed by Tom Payne
parent a2cf655bfa
commit 9368f05d1c
3 changed files with 11 additions and 6 deletions

View File

@@ -12,3 +12,4 @@ goog.require('ol.TileBounds');
goog.require('ol.TileCoord');
goog.require('ol.TileGrid');
goog.require('ol.TileUrl');
goog.require('ol.TransformFunction');

View File

@@ -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');
/**

View File

@@ -0,0 +1,9 @@
goog.provide('ol.TransformFunction');
goog.require('goog.math.Coordinate');
/**
* @typedef {function(goog.math.Coordinate): goog.math.Coordinate}
*/
ol.TransformFunction;