You are here

kml-placemark.tpl.php in KML 7

Same filename and directory in other branches
  1. 6.2 views/kml-placemark.tpl.php

File

views/kml-placemark.tpl.php
View source
<Placemark>
  <name>
    <![CDATA[<?php

print $name;
?>]]>
  </name>
  <description>
    <![CDATA[<?php

print $description;
?>]]>
  </description>
  <?php

if ($styleUrl) {
  ?>
  <styleUrl><?php

  echo $styleUrl;
  ?></styleUrl>
  <?php

}
?>
  <Point>
    <coordinates><?php

print $coords;
?></coordinates>
  </Point>
</Placemark>