forked from NASAWorldWind/WorldWindJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBalloonSize.kml
More file actions
68 lines (60 loc) · 2.89 KB
/
BalloonSize.kml
File metadata and controls
68 lines (60 loc) · 2.89 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?xml version="1.0" encoding="UTF-8"?>
<!--
This file contains several Placemarks with balloons designed to test different aspects of BrowserBalloon auto-sizing.
Use this file with test/gov/nasa/worldwind/render/BalloonSizeTest.html.
-->
<!--$Id $-->
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<name>Balloon Size test</name>
<open>1</open>
<Placemark>
<name>Simple placemark</name>
<description>Attached to the ground. Intelligently places itself
at the height of the underlying terrain.
</description>
<Point>
<coordinates>-120.0822035425683,37.42228990140251,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Simple placemark with Doctype</name>
<description><![CDATA[
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
This description contains a Doctype declaration, which causes Internet Explorer to render it in
standards mode.
<p/>Otherwise, it's just a simple placemark, attached to the ground. Intelligently places itself
at the height of the underlying terrain.
</html>
]]>
</description>
<Point>
<coordinates>-100.1822035425683,37.52228990140251,0</coordinates>
</Point>
</Placemark>
<!-- Balloon that contains only one very long line. -->
<Placemark>
<name>Wide balloon</name>
<description><![CDATA[
<table width="800" border="1">
<tr><td>
This balloon contains a table that is very wide.
</td></tr>
</table>
]]></description>
<Point>
<coordinates>-109.370533,37.823842,0</coordinates>
</Point>
</Placemark>
<!-- Balloon style using extended data -->
<Placemark>
<name>Description with URL</name>
<description>http://www.leuchtturmwelt.net/HTML/LTPHILA/ORIGINAL/NKO04_2.JPG
Date unknown. Active; focal plane 25 m (82 ft); two white flashes every 6 s. 7 m (23 ft) square concrete tower, probably with lantern and gallery and attached to a small equipment building. Entire lighthouse is white. Huelse has a postage stamp image, identified as Yubundo, that might depict this lighthouse. Located on an islet about 13 km (8 mi) southeast of the Yalu River entrance. Located on the highest point of the island. Site and tower closed. ARLHS NKR-031; Admiralty M4105; NGA 18164.</description>
<Point>
<coordinates>-111.956,33.5043</coordinates>
</Point>
</Placemark>
</Document>
</kml>