Skip to content

Instantly share code, notes, and snippets.

@dirceu-jr
Created February 20, 2018 20:29
Show Gist options
  • Save dirceu-jr/e4a5b1ab57001b83e3b44fe28810b40e to your computer and use it in GitHub Desktop.
Save dirceu-jr/e4a5b1ab57001b83e3b44fe28810b40e to your computer and use it in GitHub Desktop.
function mToPx(metres) {
var C = 40075016.686;
var c = map.getCenter();
var l = c.lat;
var r = 180/Math.PI;
var z = map.getZoom();
var m = C * Math.abs(Math.cos(l * r)) / Math.pow(2, z + 8);
var px = Math.ceil(1 / m);
return px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment