Merge pull request #1028 from twpayne/remove-extent-tostring

Remove ol.extent.toString
This commit is contained in:
Tom Payne
2013-09-20 05:10:02 -07:00
2 changed files with 0 additions and 17 deletions

View File

@@ -327,16 +327,6 @@ ol.extent.scaleFromCenter = function(extent, value) {
};
/**
* @param {ol.Extent} extent Extent.
* @return {string} String.
*/
ol.extent.toString = function(extent) {
return '(' + [extent[0], extent[2], extent[1],
extent[3]].join(', ') + ')';
};
/**
* @param {ol.Extent} extent1 Extent 1.
* @param {ol.Extent} extent2 Extent 2.