mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 07:11:52 +00:00
11 lines
311 B
Plaintext
11 lines
311 B
Plaintext
|
{% if entrance.latlong %}
|
||
|
<Placemark>
|
||
|
<name>{{ entrance.slug }}</name>
|
||
|
<description><![CDATA[{{ html }}]]></description>
|
||
|
<styleUrl>#{{ size }}_cave</styleUrl>
|
||
|
<Point>
|
||
|
<coordinates>{{ entrance.latlong.1 }},{{ entrance.latlong.0 }},0</coordinates>
|
||
|
</Point>
|
||
|
</Placemark>
|
||
|
{% endif %}
|