在 mapkit.js 中获取地图的边界
Getting the bounds of the map in mapkit.js
我不知道如何获取 mapkit.js 地图的边界,例如 google.maps 上的 map.getBounds()
使用 map.center 我得到中心的纬度、经度。
还有一个 visibleMapRect returns 以下内容:
origin: g
x: 0.5644154498027297
y: 0.38366011721614135
size: _
height: 0.0038494348475155986
width: 0.0027777777777778763
但我不确定它是否相关
我必须自己计算吗?
有没有办法获取我的地图的 4 个角?
终于想通了
const bounds = map.region.toBoundingRegion();
Returns 类似于:
{northLatitude: 38.49474438696218, eastLongitude: 24.190793833126634, southLatitude: 37.41403138384996, westLongitude: 23.190793833126634}
我不知道如何获取 mapkit.js 地图的边界,例如 google.maps 上的 map.getBounds() 使用 map.center 我得到中心的纬度、经度。 还有一个 visibleMapRect returns 以下内容:
origin: g
x: 0.5644154498027297
y: 0.38366011721614135
size: _
height: 0.0038494348475155986
width: 0.0027777777777778763
但我不确定它是否相关 我必须自己计算吗? 有没有办法获取我的地图的 4 个角?
终于想通了
const bounds = map.region.toBoundingRegion();
Returns 类似于:
{northLatitude: 38.49474438696218, eastLongitude: 24.190793833126634, southLatitude: 37.41403138384996, westLongitude: 23.190793833126634}