File: schemadata.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 (29 lines) | stat: -rw-r--r-- 818 bytes parent folder | download | duplicates (8)
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
<?xml version="1.0" encoding="UTF-8"?>
<!-- A Point Placemark created in Google Earth -->
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
  <name/>
  <open>1</open>
  <Schema name="s_name" id="s_id1">
    <SimpleField type="string" name="sfield1">
      <displayName>simple field display name 1</displayName>
    </SimpleField>
    <SimpleField type="int" name="sfield2">
      <!-- deliberately no <displayName> -->
    </SimpleField>
  </Schema>
  <Placemark>
    <name>default schemadatadata</name>
    <Point>
      <coordinates>-122.000,36.995</coordinates>
    </Point>
    <ExtendedData>
      <SchemaData schemaUrl="#s_id1">
        <SimpleData name="sfield1">one</SimpleData>
        <SimpleData name="sfield2">2</SimpleData>
      </SchemaData>
    </ExtendedData>
  </Placemark>
</Document>
</kml>