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