test.resources.de.k3b.geo.io.regressionTests.poi.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of k3b-geoHelper Show documentation
Show all versions of k3b-geoHelper Show documentation
A j2se geo support library that is compatible with Android.
<?xml version="1.0" encoding="UTF-8"?> <someRoot xmlns:expectedTestResult="uri://some/url" > <!-- "poi" is de.k3b.geo internal format for "points of interest" LocationMapViewer can find this type of content in files *.poi (or *.gpx, *.kml) --> <!-- this is de.k3b.geo internal format from xml attributes --> <poi ll="52,9" n="theName" link="theLink" s="theIconUrl" d="theDesc" t="2015-02-10T08:04:45Z" z="5" z2="7"> <expectedTestResult:id>geo:52,9?q=(theName)&z=5&z2=7&link=theLink&s=theIconUrl&d=theDesc&t=2015-02-10T08:04:45Z</expectedTestResult:id> </poi> <!-- this is de.k3b.geo internal format from an interpreted geo-uri --> <poi geoUri="geo:52,9?q=(theName)&link=theLink&s=theIconUrl&d=theDesc&t=2015-02-10T08:04:45Z"> <expectedTestResult:id>geo:52,9?q=(theName)&link=theLink&s=theIconUrl&d=theDesc&t=2015-02-10T08:04:45Z</expectedTestResult:id> </poi> <!-- infer loc, name and time from geo-description --> <poi infer="1" geoUri="geo:?d=the Descr contain (theName), loc 52.1,9.2 and time 2015-02-10T08:04:45Z"> <expectedTestResult:id>geo:52.1,9.2?q=(theName)&d=the+Descr+contain+%28theName%29%2C+loc+52.1%2C9.2+and+time+2015-02-10T08%3A04%3A45Z&t=2015-02-10T08:04:45Z</expectedTestResult:id> </poi> <!-- infer link and symbol from geo-description using single quotes --> <poi infer="1" geoUri="geo:52,9?d= href%3D'theLink' src %3D 'theIconUrl' " > <expectedTestResult:id>geo:52,9?link=theLink&s=theIconUrl&d=+href%3D%27theLink%27+src+%3D+%27theIconUrl%27+</expectedTestResult:id> </poi> <!-- infer link and symbol from geo-description using double quotes --> <poi infer='1' geoUri='geo:52,9?d= href%3D"theLink" src %3D "theIconUrl" ' > <expectedTestResult:id>geo:52,9?link=theLink&s=theIconUrl&d=+href%3D%22theLink%22+src+%3D+%22theIconUrl%22+</expectedTestResult:id> </poi> <!-- infer name, date, link and symbol from xml-description --> <poi ll="52,9" d="(theName) 2015-02-10T08:04:45Z src='theIconUrl' href='theLink'" > <expectedTestResult:id>geo:52,9?q=(theName)&link=theLink&s=theIconUrl&d=%28theName%29+2015-02-10T08%3A04%3A45Z+src%3D%27theIconUrl%27+href%3D%27theLink%27&t=2015-02-10T08:04:45Z</expectedTestResult:id> </poi> <!-- similar to gpx v1.1 with non standard geoUri attribute --> <trkpt geoUri="geo:52,9?q=(theName)&link=theLink&s=theIconUrl&d=theDesc&t=2015-02-10T08:04:45Z"> <expectedTestResult:id>geo:52,9?q=(theName)&link=theLink&s=theIconUrl&d=theDesc&t=2015-02-10T08:04:45Z</expectedTestResult:id> </trkpt> <!-- similar to gpx v1.0 with non standard geoUri attribute --> <wpt geoUri="geo:52,9?q=(theName)&link=theLink&s=theIconUrl&d=theDesc&t=2015-02-10T08:04:45Z"> <expectedTestResult:id>geo:52,9?q=(theName)&link=theLink&s=theIconUrl&d=theDesc&t=2015-02-10T08:04:45Z</expectedTestResult:id> </wpt> <!-- similar to kml v2.2 with non standard geoUri attribute --> <Placemark geoUri="geo:52,9?q=(theName)&link=theLink&s=theIconUrl&d=theDesc&t=2015-02-10T08:04:45Z"> <expectedTestResult:id>geo:52,9?q=(theName)&link=theLink&s=theIconUrl&d=theDesc&t=2015-02-10T08:04:45Z</expectedTestResult:id> </Placemark> </someRoot>