16 lines
		
	
	
	
		
			417 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			417 B
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="UTF-8"?>
 | 
						|
<kml xmlns="http://earth.google.com/kml/2.1">
 | 
						|
  <Document>
 | 
						|
    <Placemark>
 | 
						|
      <name>{{ location.name }}</name>
 | 
						|
      <description>
 | 
						|
        <![CDATA[
 | 
						|
          {{ location.html_description }}
 | 
						|
        ]]>
 | 
						|
      </description>
 | 
						|
      <Point>
 | 
						|
        <coordinates>{{ location.latitude }},{{ location.longitude }}</coordinates>
 | 
						|
      </Point>
 | 
						|
    </Placemark>
 | 
						|
  </Document>
 | 
						|
</kml>
 |