You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
630 B
18 lines
630 B
#(kml)#::<?xml version="1.0" encoding="UTF-8"?>
|
|
<kml xmlns="http://www.opengis.net/kml/2.2">
|
|
<Document>
|
|
#{placemark}#
|
|
<Placemark>
|
|
<name><![CDATA[#[name]#]]></name>
|
|
<description><![CDATA[<p>Location: #[location]#</p><p>Author: #[author]#</p><p>Publisher: #[copyright]#</p><p>Subject: #[subject]#</p><p>Abstract: #[description]#</p><p>Source: <a href="#[url]#">#[url]#</a></p>]]></description>
|
|
<Point>
|
|
<name>#[pointname]#</name>
|
|
<coordinates>#[lon]#,#[lat]#</coordinates>
|
|
</Point>
|
|
<TimeStamp>
|
|
<when>#[date]#</when>
|
|
</TimeStamp>
|
|
</Placemark>
|
|
#{/placemark}#
|
|
</Document>
|
|
</kml>#(/kml)# |