diff options
Diffstat (limited to 'template/template.kml')
-rw-r--r-- | template/template.kml | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/template/template.kml b/template/template.kml index 9469872..a0471bf 100644 --- a/template/template.kml +++ b/template/template.kml @@ -1,10 +1,11 @@ <?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>$NAME.kml</name> - <Style id="s_ylw-pushpin_hl"> + <name>$NAME</name> + <Style id="s_ylw-pushpin"> <IconStyle> - <scale>1.4</scale> + <color>ffffaa00</color> + <scale>1.2</scale> <Icon> <href>http://maps.google.com/mapfiles/kml/shapes/open-diamond.png</href> </Icon> @@ -25,9 +26,10 @@ <styleUrl>#s_ylw-pushpin_hl</styleUrl> </Pair> </StyleMap> - <Style id="s_ylw-pushpin"> + <Style id="s_ylw-pushpin_hl"> <IconStyle> - <scale>1.2</scale> + <color>ffffaa00</color> + <scale>1.4</scale> <Icon> <href>http://maps.google.com/mapfiles/kml/shapes/open-diamond.png</href> </Icon> @@ -39,21 +41,21 @@ </ListStyle> </Style> <Placemark> - <name>$NAME</name> - <description>$NAME</description> + <name>$NAME</name> + <description>$NAME</description> <LookAt> <longitude>$LON</longitude> <latitude>$LAT</latitude> <altitude>0</altitude> <heading>0</heading> <tilt>0</tilt> - <range>999.9998585735252</range> + <range>999.999</range> <gx:altitudeMode>relativeToSeaFloor</gx:altitudeMode> </LookAt> <styleUrl>#m_ylw-pushpin</styleUrl> <Point> <gx:drawOrder>1</gx:drawOrder> - <coordinates>$LON,$LAT</coordinates> + <coordinates>$LON,$LAT,0</coordinates> </Point> </Placemark> </Document> |