I'm trying to set map center with lat/lon of 3857 projection in leaflet. By using lat/lon of projection 4326 its working fine.
var map = L.map('map', {
crs: L.CRS.EPSG3857
}).setView([51.40457186188496, -2.3741738081973844], 13);
But it dose not working if i provide 3857 lat/lon.
var map = L.map('map', {
crs: L.CRS.EPSG3857
}).setView([6693172.2381477, -264291.81938326], 13);
Please help me where i am wrong.
Thanks