Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何最有效地计算给定图块的父图块坐标? 假设我有一个带坐标的瓷砖:
x = 2194 y = 1287 z = 12
然后如何在缩放 11 中计算其父图块的坐标?
谷歌地图使用四叉树表示来计算他们的瓦片的 indizes。您可以在此处找到有关寻址系统如何工作的示例。在此链接中,还有一个类可用,其中包含许多用于转换的实用方法。
通常,如果您将 x 和 y 值除以(并可选择向下舍入),则父图块应该可用:
x = 1097 y = 643 z = 11