diff options
Diffstat (limited to 'extlib/leaflet/src/geo/projection/Projection.LonLat.js')
-rw-r--r-- | extlib/leaflet/src/geo/projection/Projection.LonLat.js | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/extlib/leaflet/src/geo/projection/Projection.LonLat.js b/extlib/leaflet/src/geo/projection/Projection.LonLat.js deleted file mode 100644 index ece29717..00000000 --- a/extlib/leaflet/src/geo/projection/Projection.LonLat.js +++ /dev/null @@ -1,10 +0,0 @@ -
-L.Projection.LonLat = {
- project: function(latlng) {
- return new L.Point(latlng.lng, latlng.lat);
- },
-
- unproject: function(point, unbounded) {
- return new L.LatLng(point.y, point.x, unbounded);
- }
-};
|