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

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