用于UWP的Bing Maps边界框

时间:2016-01-08 10:01:46

标签: c# wpf uwp bing-maps uwp-maps

根据this MSDN页面,有一种很好的方法可以在Windows 8之前找到Bing Maps边界框的角点坐标。链接中提到的函数是LocationRectangle

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

2 个答案:

答案 0 :(得分:1)

您可以使用GetLocationFromOffset函数。在视图的每个角落使用它会得到相同的结果。

请参阅MSDN link

答案 1 :(得分:-1)

以下是什么问题? (区域为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

或者这还不够?