Created
February 23, 2018 01:21
-
-
Save dirceu-jr/bfb4cd8b0c4e5190d6fe549dd03f9518 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getTileInLatLng(latlng) { | |
var tileSize = L.point(256, 256); | |
var pixelPoint = map.project(latlng, map.getZoom()).floor(); | |
var coords = pixelPoint.unscaleBy(tileSize).floor(); | |
coords.z = map.getZoom(); | |
return coords; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment