aboutsummaryrefslogtreecommitdiffstats
path: root/extlib/leaflet/src/geo/projection/Projection.LonLat.js
blob: ece29717c7ffdc1676acb93b9953bf36ea28dffe (plain)
1
2
3
4
5
6
7
8
9
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);
	}
};