0

根据这个MSDN 页面,在 Windows 8 之前,有一种很好的方法可以找到 Bing 地图边界框的角坐标。链接中提到的功能是LocationRectangle

我们正在为 Windows 10 开发通用应用程序,似乎无法获得边界框。是否有一个库或插件可以让我们这样做?或者是否有我们缺少的功能?

4

2 回答 2

1

您可以使用 GetLocationFromOffset 函数。对视图的每个角落使用它会给你相同的结果。

请参阅MSDN 链接

于 2016-01-08T10:16:34.557 回答
-1

跟风有什么问题?(面积为a GeoBoundingBox

area.NorthwestCorner.Latitude,
area.NorthwestCorner.Longitude,
area.SoutheastCorner.Latitude,
area.SoutheastCorner.Longitude

https://msdn.microsoft.com/en-us/library/windows/apps/windows.devices.geolocation.geoboundingbox.northwestcorner.aspx

或者这还不够?

于 2016-01-08T12:18:22.413 回答