Is it possible in leaflet to drop marker with 3857 projection on map?
I fond a solution where first translate point to 4326 using proj4js and than drop it on map.
var source = new Proj4js.Proj('EPSG:3857');
var dest = new Proj4js.Proj('EPSG:4326');
var p = new Proj4js.Point(-12307.601047734, 6711475.1283642);
Proj4js.transform(source, dest, p);
new L.Marker([p.y, p.x], {bounceOnAdd: true}).addTo(map);
is there any other way in core leaflet or leaflet plugin to drop marker without using proj4js library.
Thanks.
After spending good time on internet.i'm finally done it.