aboutsummaryrefslogtreecommitdiffstats
path: root/extlib/leaflet/src/geo/projection/Projection.LonLat.js
diff options
context:
space:
mode:
Diffstat (limited to 'extlib/leaflet/src/geo/projection/Projection.LonLat.js')
-rw-r--r--extlib/leaflet/src/geo/projection/Projection.LonLat.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/extlib/leaflet/src/geo/projection/Projection.LonLat.js b/extlib/leaflet/src/geo/projection/Projection.LonLat.js
new file mode 100644
index 00000000..ece29717
--- /dev/null
+++ b/extlib/leaflet/src/geo/projection/Projection.LonLat.js
@@ -0,0 +1,10 @@
+
+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);
+ }
+};