Bing UWP 的地图边界框
Bing Maps Bounding box for UWP
根据 this MSDN 页面,有一种很好的方法可以找到 Bing 地图边界框角的坐标,直到 Windows 8. link 是 LocationRectangle
。
我们正在为 Windows 10 开发通用应用程序,但似乎无法获取边界框。是否有库或插件可以让我们这样做?还是我们缺少某个功能?
您可以使用GetLocationFromOffset 函数。对视图的每个角使用它会得到相同的结果。
跟随有什么问题? ( 区域是 GeoBoundingBox
)
area.NorthwestCorner.Latitude,
area.NorthwestCorner.Longitude,
area.SoutheastCorner.Latitude,
area.SoutheastCorner.Longitude
还是这还不够?
根据 this MSDN 页面,有一种很好的方法可以找到 Bing 地图边界框角的坐标,直到 Windows 8. link 是 LocationRectangle
。
我们正在为 Windows 10 开发通用应用程序,但似乎无法获取边界框。是否有库或插件可以让我们这样做?还是我们缺少某个功能?
您可以使用GetLocationFromOffset 函数。对视图的每个角使用它会得到相同的结果。
跟随有什么问题? ( 区域是 GeoBoundingBox
)
area.NorthwestCorner.Latitude,
area.NorthwestCorner.Longitude,
area.SoutheastCorner.Latitude,
area.SoutheastCorner.Longitude
还是这还不够?