c# Windows Phone 8.1 如何获取地理坐标对象
本文关键字:获取 对象 坐标 Phone Windows 何获取 | 更新日期: 2023-09-27 18:21:21
我需要用我的经度和纬度获取地理坐标对象。无法通过 new(( 获取地理坐标https://msdn.microsoft.com/en-us/library/windows/apps/windows.devices.geolocation.geocoordinate一种方法是例如此代码
var locator = new Geolocator();
locator.DesiredAccuracyInMeters = 50;
var position = await locator.GetGeopositionAsync();
Geocoordinate Coordinate = position.Coordinate;
哪个得到GPS坐标。但是我需要与我的经度和纬度进行地理坐标。
不能创建Geocoordinate
,因为它是密封的只读类。 相反,绑定到Geopoint
,其中包含您需要的所有位置信息,而无需Geocoordinate
拥有的位置服务行李。
public Geopoint Location { get; set; }
Maps:MapControl.Location="{Binding Location}"