File: networklink.kml

package info (click to toggle)
libkml 1.3.0-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,660 kB
  • sloc: cpp: 48,088; python: 2,008; xml: 1,806; ansic: 1,766; php: 223; java: 195; ruby: 109; perl: 108; sh: 42; makefile: 17
file content (38 lines) | stat: -rw-r--r-- 1,158 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="UTF-8"?>
<!--
every element has non-default values
-->
<kml xmlns="http://earth.google.com/kml/2.2">
<NetworkLink>
  <visibility>0</visibility>
  <open>1</open>
  <address>123 Main St, USA</address>
  <phoneNumber>123 456 7890</phoneNumber>
  <Snippet maxLines="3">snippet txt</Snippet>
  <description><![CDATA[description txt]]></description>
  <LookAt>
    <longitude>1</longitude>
    <latitude>2</latitude>
    <altitude>3</altitude>
    <heading>4</heading>
    <tilt>5</tilt>
    <range>6</range>
    <altitudeMode>absolute</altitudeMode>
  </LookAt>
  <styleUrl>http://example.com/foo.kml#myCoolStyle</styleUrl>
  <refreshVisibility>1</refreshVisibility>
  <flyToView>1</flyToView>
  <!-- Link has non-default values -->
  <Link>
    <href>http://example.com/bar.kml</href>
    <refreshMode>onChange</refreshMode>
    <refreshInterval>1</refreshInterval>
    <viewRefreshMode>onStop</viewRefreshMode>
    <viewRefreshTime>1</viewRefreshTime>
    <viewBoundScale>0.5</viewBoundScale>
    <viewFormat>TERRAIN=[terrainEnabled]</viewFormat>
    <httpQuery>KMLVERSION=[kmlVersion]</httpQuery>
  </Link>
</NetworkLink>
</kml>