You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 6, 2023. It is now read-only.
Geos doesn't seem to support the "true" tag in the map sources xml file. Is this the case?
This is the conversion (possibly the opposite of what you would need):
def GoogleTile(self, tx, ty, zoom):
"Converts TMS tile coordinates to Google Tile coordinates"
# coordinate origin is moved from bottom-left to top-left corner of the extent
return tx, (2**zoom - 1) - ty
Geos doesn't seem to support the "true" tag in the map sources xml file. Is this the case?
This is the conversion (possibly the opposite of what you would need):
Taken from here: http://www.maptiler.org/google-maps-coordinates-tile-bounds-projection/
The text was updated successfully, but these errors were encountered: