Hallo!
Ich nutze gps-master mit meiner "Aldi"-Uhr zum Geocaching.
Die Wegepunkte kann man nach einfacher editierung einer *.kml-Datei in die uhr importieren.
(GPS-Koordinaten im dezimalformat länge,breite,höhe(=0) )
Umgekehrt kann man seinen Pfad nach google-earth exportieren.
BSP:
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="
http://www.opengis.net/kml/2.2" xmlns:gx="
http://www.google.com/kml/ext/2.2" xmlns:kml="
http://www.opengis.net/kml/2.2" xmlns:atom="
http://www.w3.org/2005/Atom">
<Document>
<name>RUNDE_TEST.kml</name>
<Style id="s_ylw-pushpin_hl">
<IconStyle>
<scale>1.3</scale>
<Icon>
<href>
http://maps.google.com/mapfiles/kml/pus ... .png</href>
</Icon>
<hotSpot x="20" y="2" xunits="pixels" yunits="pixels"/>
</IconStyle>
</Style>
<Style id="s_ylw-pushpin">
<IconStyle>
<scale>1.1</scale>
<Icon>
<href>
http://maps.google.com/mapfiles/kml/pus ... .png</href>
</Icon>
<hotSpot x="20" y="2" xunits="pixels" yunits="pixels"/>
</IconStyle>
</Style>
<StyleMap id="m_ylw-pushpin">
<Pair>
<key>normal</key>
<styleUrl>#s_ylw-pushpin</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#s_ylw-pushpin_hl</styleUrl>
</Pair>
</StyleMap>
<Placemark>
<name>Cachename</name>
<styleUrl>#m_ylw-pushpin</styleUrl>
<LineString>
<tessellate>1</tessellate>
<coordinates>
8.7100,51.7100,0 8.711,51.72110,0
</coordinates>
</LineString>
</Placemark>
</Document>
</kml>