根据这个MSDN 页面,在 Windows 8 之前,有一种很好的方法可以找到 Bing 地图边界框的角坐标。链接中提到的功能是LocationRectangle
。
我们正在为 Windows 10 开发通用应用程序,似乎无法获得边界框。是否有一个库或插件可以让我们这样做?或者是否有我们缺少的功能?
您可以使用 GetLocationFromOffset 函数。对视图的每个角落使用它会给你相同的结果。
请参阅MSDN 链接
跟风有什么问题?(面积为a GeoBoundingBox
)
area.NorthwestCorner.Latitude,
area.NorthwestCorner.Longitude,
area.SoutheastCorner.Latitude,
area.SoutheastCorner.Longitude
或者这还不够?