File: snippets.kml

package info (click to toggle)
libkml 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 28,708 kB
  • ctags: 18,811
  • sloc: cpp: 132,311; ansic: 13,333; sh: 10,062; python: 5,626; makefile: 2,300; xml: 1,806; java: 106
file content (22 lines) | stat: -rw-r--r-- 595 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
<kml xmlns="http://earth.google.com/kml/2.2">
<NetworkLinkControl>
  <linkSnippet maxLines="1">link snippet with maxlines 1</linkSnippet>
</NetworkLinkControl>
<Document>
  <Placemark>
    <Snippet>no maxlines</Snippet>
  </Placemark>
  <Placemark>
    <Snippet maxLines="1">maxlines 1</Snippet>
  </Placemark>
  <Placemark>
    <Snippet maxLines="2">default maxlines</Snippet>
  </Placemark>
  <Placemark>
    <Snippet maxLines="3"><b>bold inlined</b></Snippet>
  </Placemark>
  <Placemark>
    <Snippet maxLines="4"><![CDATA[<b>bold in cdata</b>]]></Snippet>
  </Placemark>
</Document>
</kml>