2012-07-29 101 views
4

我正在尋找由Windowws Phone Emulator其他工具使用的位置數據的格式。在「位置」選項卡上,可以選擇保存/打開記錄器數據。我問這個問題,因爲我需要模擬地理位置更改,但位置選項卡不適用於我。作爲解決方法,我將創建一個位置數據文件並在模擬器中打開它。Windows Phone 7仿真器位置數據格式

enter image description here

回答

6

它在此格式的簡單的XML文件:

<?xml version="1.0" encoding="utf-8"?> 
<WindowsPhoneEmulator xmlns="http://schemas.microsoft.com/WindowsPhoneEmulator/2009/08/SensorData"> 
    <SensorData> 
     <Header version="1" /> 
     <GpsData latitude="" longitude="" /> 
     <GpsData latitude="" longitude="" /> 
     <GpsData latitude="" longitude="" /> 
    </SensorData> 
</WindowsPhoneEmulator> 

回答感謝 「Konaju遊戲」 用戶在AppHub論壇(http://forums.create.msdn.com/forums /p/91880/550593.aspx)

+0

謝謝!這是我一直在尋找的。 – 2012-07-29 17:29:59

+0

如果這是您正在尋找的答案,請將其標記爲答案。 ;)@CaptainO。 – 2012-07-29 17:41:13

+0

標記爲答案。 – 2012-07-29 17:50:24

相關問題