Windows Phone 7 Emulator Location Data Format

I am looking for a location data format used by the additional tools of the Windowws Phone emulator. On the tab "Location" there is an option to save / open the data of the recorder. I ask this question because I need to simulate a change in location, but the Location tab does not work for me. As a workaround, I'm going to create a location data file and open it in an emulator.

enter image description here

+4
source share
1 answer

This is a simple XML file in this format:

<?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> 

Answered by the user "Konaju Games" on the AppHub forum (http://forums.create.msdn.com/forums/p/91880/550593.aspx)

+6
source

All Articles