File: old_schema_example.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 (28 lines) | stat: -rw-r--r-- 726 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
This is an example taken from a real KML file generated
by Google Earth Pro 5.1 from a SHP file. This markup is
NOT valid KML, but libkml does parse it.
-->
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
  <Schema parent="Placemark" name="S_521_525_SSSSS">
    <SimpleField type="string" name="Foo"></SimpleField>
    <SimpleField type="string" name="Bar"></SimpleField>
  </Schema>
  <S_521_525_SSSSS>
    <name>1</name>
    <Foo>foo 1</Foo>
    <Bar>bar 1</Bar>
    <Point>
      <coordinates>-122,37</coordinates>
    </Point>
  </S_521_525_SSSSS>
  <S_521_525_SSSSS>
    <name>2</name>
    <Foo>foo 2</Foo>
    <Bar>bar 2</Bar>
  </S_521_525_SSSSS>
</Document>
</kml>