diff options
author | pux <pux@pux.dom> | 2022-05-07 12:37:41 +0200 |
---|---|---|
committer | pux <pux@pux.dom> | 2022-05-07 12:37:41 +0200 |
commit | b9bd2fb6a8166e08a5f345d3905e43adb3b72495 (patch) | |
tree | 8b91eaed03f872dc4ad490a415cb37ddd73de340 /template.kml | |
parent | 193b5efd5db2ed89c198c29ce445d2d63879801b (diff) | |
download | gauss_krueger_to_wgs84_kml-b9bd2fb6a8166e08a5f345d3905e43adb3b72495.tar.gz gauss_krueger_to_wgs84_kml-b9bd2fb6a8166e08a5f345d3905e43adb3b72495.tar.bz2 gauss_krueger_to_wgs84_kml-b9bd2fb6a8166e08a5f345d3905e43adb3b72495.zip |
template.kml to template/ dir
so we can easily mv *.kml later on
Diffstat (limited to 'template.kml')
-rw-r--r-- | template.kml | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/template.kml b/template.kml deleted file mode 100644 index 9469872..0000000 --- a/template.kml +++ /dev/null @@ -1,60 +0,0 @@ -<?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"> - <IconStyle> - <scale>1.4</scale> - <Icon> - <href>http://maps.google.com/mapfiles/kml/shapes/open-diamond.png</href> - </Icon> - </IconStyle> - <LabelStyle> - <scale>0.3</scale> - </LabelStyle> - <ListStyle> - </ListStyle> - </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> - <Style id="s_ylw-pushpin"> - <IconStyle> - <scale>1.2</scale> - <Icon> - <href>http://maps.google.com/mapfiles/kml/shapes/open-diamond.png</href> - </Icon> - </IconStyle> - <LabelStyle> - <scale>0.3</scale> - </LabelStyle> - <ListStyle> - </ListStyle> - </Style> - <Placemark> - <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> - <gx:altitudeMode>relativeToSeaFloor</gx:altitudeMode> - </LookAt> - <styleUrl>#m_ylw-pushpin</styleUrl> - <Point> - <gx:drawOrder>1</gx:drawOrder> - <coordinates>$LON,$LAT</coordinates> - </Point> - </Placemark> -</Document> -</kml> |