File: doc.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 (48 lines) | stat: -rw-r--r-- 1,082 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
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="utf-8"?>
<!--

This file is used in the KMZ creation test.

-->
<kml xmlns="http://www.opengis.net/kml/2.2">
  <Document>

    <GroundOverlay>
      <Icon>
        <href>dummy.png</href>
      </Icon>
    </GroundOverlay>

    <PhotoOverlay>
      <Icon>
        <!-- This is the same resource as the above GroundOverlay. It should
        not be added twice to a KMZ archive created from this file. -->
        <href>dummy.png</href>
      </Icon>
    </PhotoOverlay>

    <Placemark>
      <styleUrl>kmzfiles/dummy.kml#nosuchid</styleUrl>
    </Placemark>

    <Placemark>
      <Style>
        <IconStyle>
          <Icon>
            <!-- This path resolves to the same file as used in the
            Overlays above. -->
            <href>a/b1/../b2/../../dummy.png</href>
          </Icon>
        </IconStyle>
      </Style>
    </Placemark>

    <PhotoOverlay>
      <Icon>
        <!-- This is an invalid relative href and will not resolve -->
        <href>../kml/kmlsamples.kml</href>
      </Icon>
    </PhotoOverlay>

  </Document>
</kml>