用于UWP的必应地图边界框
本文关键字:地图 边界 UWP 用于 | 更新日期: 2023-09-27 18:29:38
根据这个MSDN页面,在Windows8之前,有一种很好的方法可以为Bing地图找到边界框的角坐标。链接中提到的函数是LocationRectangle
。
我们正在为Windows 10开发一个通用应用程序,但似乎没有办法获得边界框。有没有一个库或插件可以让我们这样做?还是我们缺少了一个功能?
您可以使用GetLocationFromOffset函数。对视图的每个角落使用此选项将获得相同的结果。
请参阅MSDN链接
下面有什么问题?(区域为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
还是这还不够?