Google 地图中的世界坐标是以墨卡托投影的原点(即地图西北角,经度为 180 度,纬度约 85 度)为起点测量的,在 x 轴上向东(右)递增,在 y 轴上向南(下)递增。由于基础的墨卡托 Google 地图图块为 256 x 256 像素,因此,可用的世界坐标空间为 {0-256}, {0-256}。
现在,我们可以在每个缩放级别精确表示地图上的每个位置。Maps SDK for Android 会根据指定的地图中心点(采用 LatLng 形式)缩放级别和外围 DOM 元素的大小来构造视口,并将此边界框转换为像素坐标。然后,API 从逻辑上确定位于指定像素边界内的所有地图图块。每个地图图块均使用图块坐标来定位,这大大简化了地图图像的显示。
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2024-06-28。"],[[["The Maps SDK for Android uses four coordinate systems: latitude/longitude, world, pixel, and tile coordinates."],["World coordinates are based on the Mercator projection and represent locations independent of zoom level."],["Pixel coordinates denote a specific pixel on the map at a given zoom level, calculated using world coordinates and zoom level."],["Tile coordinates simplify map imagery display by dividing the map into a grid of tiles, referenced by x,y coordinates."],["Tile coordinates are derived from pixel coordinates and zoom level, facilitating efficient loading of map imagery."]]],["The Maps SDK uses four coordinate systems: latitude/longitude (WGS84 standard), world, pixel, and tile. World coordinates, derived via Mercator projection, represent locations on the map relative to a base tile at zoom level 0. Pixel coordinates, calculated as `worldCoordinate * 2^zoomLevel`, specify pixels at specific zoom levels. Tile coordinates, determined by dividing pixel coordinates by tile size (256), reference specific map tiles for loading imagery. Each coordinate type is essential for rendering and managing map data.\n"]]