我遇到了地理定位問題。 Bing Maps不斷告訴我我在西雅圖(實際上在波蘭華沙)。我不知道那有什麼問題。我已經在我的筆記本電腦(Win 10)以及Windows Phone Emulator中啓用了定位服務。地圖加載很好,當我點擊「找我按鈕」(appBarButton_Click
方法)它將我的地圖集中到西雅圖。UWP地理定位服務一直告訴我im Seatlle
private async void getLocation()
{
Geolocator gl = new Geolocator
{
DesiredAccuracy = PositionAccuracy.High
};
Geoposition pos = await gl.GetGeopositionAsync();
Geopoint myLocation = pos.Coordinate.Point;
MyMap.Center = myLocation;
MyMap.ZoomLevel = 12;
}
private void appBarButton_Click(object sender, RoutedEventArgs e)
{
getLocation();
}
請務必在模擬器中「設置」您的位置,因爲它不會使用實際的GPS。它將採用您在模擬器位置選項卡中設置的放置位置的位置! – Depechie
非常感謝!有效! :) –