Ignore:
Timestamp:
03/04/10 06:54:42 (2 years ago)
Author:
takanori
Message:

modify kml code with infowindow page template

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Products.ATGoogleMaps/trunk/Products/ATGoogleMaps/skins/ATGoogleMaps/gmap.kml.pt

    r288 r289  
    11<?xml version="1.0" encoding="UTF-8"?> 
    2 <kml xmlns="http://earth.google.com/kml/2.0" 
    3      xmlns:tal="http://xml.zope.org/namespaces/tal"> 
     2<kml xmlns="http://earth.google.com/kml/2.2" 
     3     xmlns:tal="http://xml.zope.org/namespaces/tal" 
     4     xmlns:metal="http://xml.zope.org/namespaces/metal"> 
    45<tal:dummy tal:define="dummy python:request.RESPONSE.setHeader('Content-Type', 'application/vnd.google-earth.kml;; charset=utf-8')" /> 
    56<Document> 
     
    1314    <Placemark tal:define="marker item/getObject"> 
    1415      <name tal:content="item/pretty_title_or_id">Marker title</name> 
    15       <description tal:content="item/Description">Description</description> 
     16      <address tal:content="marker/address">Address</address> 
     17      <phoneNumber tal:content="marker/phone">03-1111-1111</phoneNumber> 
     18      <Snippet tal:content="marker/Description">Snippet</Snippet> 
     19      <description tal:content="structure marker/infowindow"> 
     20      </description> 
    1621      <Point> 
    1722        <coordinates tal:content="string:${marker/point/longitude},${marker/point/latitude}">139.71,35.73</coordinates> 
Note: See TracChangeset for help on using the changeset viewer.