On Jan 3, 3:38 pm, Adrian Kozak <[email protected]> wrote: > Welcome! > > I'm a student from PWSZ at Nysa (Poland). This is my last term and I'm > working on my Engineering Work. My Topic is: "Photo visualization > system using GPS data". Idea of my project is to create system divided > on 2 apps: > * Mobile Client (GdzieBylem [eng. WhereIWas]) - C#.Net app on Windows > Mobile 6 phone (HTC SPV M650) which idea is to collect every 1 minute > data from build-in GPS module and save coords and time do XML file > * Server Side PHP app - A PHP app using XML file from Mobile Client > above, which "combines" photos with coords by timestamp from XML file > and create a Google Maps presentation of places marked on map with > photos combined before. > > Actually I work on Mobile Client and I want to ask you for a > suggestion how could I create xml file (syntax) with coords and > timestamp to achive maximum flexibility and compatibility with > GoogleMaps api? I've read an article about GPX format but I want to > know if there are any other formats of XML file used by GoogleMaps > API.
XML is XML, you can customise it how you like and use your own parser. GPX is one agreed standard way to use XML to represent location data, and is favoured by GPS utilities. KML is another agreed standard to represent mapping data, and can be easily used on Google maps. I believe tools already exist for converting from one to another. -- You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.
