2013-04-03 50 views
1

我使用下面的代碼的Windows Phone 8模擬器回到雷德蒙位置只有

Geolocator myGeolocator = new Geolocator 
{ 
    DesiredAccuracy = PositionAccuracy.High 
}; 
Geoposition myGeoposition = await myGeolocator.GetGeopositionAsync(); 

Geocoordinate myGeocoordinate = myGeoposition.Coordinate; 

一邊跑,每次我得到的位置作爲微軟的模擬器,這是一個錯誤,如果是,那麼我們如何才能擺脫出來嗎?

回答

4

有一個位置傳感器模擬器可用於Windows Phone模擬器(7.5和8):How to test apps that use location data for Windows Phone

它看起來像:

Windows Phone Emulator location simulator

您可以設置當前手機位置,以任何你想要使用該工具。 IT也允許您記錄路徑並播放記錄的路徑。

要打開它,請單擊其他工具按鈕 - 模擬器工具欄中的最後一個按鈕。它在下面的照片上發黃。

enter image description here

+0

由於它的工作,但我不能對應用程序本身的負荷什麼? –

相關問題