-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample.kml
33 lines (33 loc) · 1011 Bytes
/
sample.kml
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
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Placemark>
<name>Pyramid (in Egypt)</name>
<description>3d kml model at Egypt</description>
<Model>
<Location>
<longitude>31.2357</longitude>
<latitude>30.0444</latitude>
<altitude>0</altitude>
</Location>
<Orientation>
<heading>0</heading>
<tilt>0</tilt>
<roll>0</roll>
</Orientation>
<Scale>
<x>1</x>
<y>1</y>
<z>1</z>
</Scale>
<Link>
<href>model.dae</href>
</Link>
<ResourceMap>
<Alias>
<targetHref>textures/texture.png</targetHref>
<sourceHref>textures/texture.png</sourceHref>
</Alias>
</ResourceMap>
</Model>
</Placemark>
</kml>