diff options
author | Mathias Mayrhofer <mtmayr@mtmayr.com> | 2020-02-23 13:09:14 +0100 |
---|---|---|
committer | Mathias Mayrhofer <mtmayr@mtmayr.com> | 2020-02-23 13:09:14 +0100 |
commit | ae0b9a9782c7b781e688191018a66d5c1554437a (patch) | |
tree | e29a5928ed5c19c73b1f9f908cc2730cc1c8683f /kml/index.kml | |
parent | 21ed8cf5c8dc2fe6353a5065016a0e781ca4e126 (diff) |
Implementing KML export for GoogleEarth
Diffstat (limited to 'kml/index.kml')
-rw-r--r-- | kml/index.kml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/kml/index.kml b/kml/index.kml new file mode 100644 index 0000000..8192058 --- /dev/null +++ b/kml/index.kml @@ -0,0 +1,21 @@ +<?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"> +<NetworkLink> + <name>Funkfeuer Graz</name> + <visibility>1</visibility> + <open>1</open> + <Style> + <ListStyle> + <listItemType>check</listItemType> + <bgColor>00ffffff</bgColor> + <maxSnippetLines>2</maxSnippetLines> + </ListStyle> + </Style> + <Url> + <href>https://karte.ffgraz.net/kml/0xff.php</href> + <refreshMode>onInterval</refreshMode> + <refreshInterval>3600</refreshInterval> + </Url> +</NetworkLink> +</kml> + |