Don't assume EPSG:4326 in ol.format.Format

This commit is contained in:
Tom Payne
2013-12-13 21:42:25 +01:00
parent e6becd3e92
commit 700ebb860a

View File

@@ -2,7 +2,6 @@ goog.provide('ol.format.Format');
goog.provide('ol.format.FormatType');
goog.require('goog.functions');
goog.require('ol.proj');
/**
@@ -65,9 +64,7 @@ ol.format.Format.prototype.readGeometry = goog.abstractMethod;
* @param {Document|Node|Object|string} source Source.
* @return {ol.proj.Projection} Projection.
*/
ol.format.Format.prototype.readProjection = function(source) {
return ol.proj.get('EPSG:4326');
};
ol.format.Format.prototype.readProjection = goog.abstractMethod;
/**