摘要: //将tile(瓦片)坐标系转换为lnglat(地理)坐标系 public static Lnglat toLnglat(Tile tile) { double n = Math.pow(2, tile.getZoom()); double lng = tile.getX() / n * 360.0 阅读全文
posted @ 2017-08-01 13:59 Redchar 阅读(1913) 评论(0) 推荐(0) 编辑