Ignore:
Timestamp:
08/23/06 01:03:07 (6 years ago)
Author:
takanori
Message:

表示形式を修正、kml の表示をサポート

File:
1 edited

Legend:

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

    r104 r109  
    22<kml xmlns="http://earth.google.com/kml/2.0" 
    33     xmlns:tal="http://xml.zope.org/namespaces/tal"> 
    4 <tal:dummy tal:define="dummy python:request.RESPONSE.setHeader('Content-Type', 'application/vnd.google-earth.kml+xml;; charset=utf-8')" /> 
     4<tal:dummy tal:define="dummy python:request.RESPONSE.setHeader('Content-Type', 'application/vnd.google-earth.kml;; charset=utf-8')" /> 
    55<Document> 
    66  <name tal:content="here/pretty_title_or_id">Document title</name> 
     
    1010    <latitude tal:content="here/center/latitude">35.73</latitude> 
    1111  </LookAt> 
    12   <Placemark tal:repeat="marker python:here.objectValues('GMarker')"> 
    13     <name tal:content="marker/pretty_title_or_id">Marker title</name> 
    14     <description tal:content="marker/description">Description</description> 
     12  <Placemark tal:repeat="here python:here.objectValues('GMarker')"> 
     13    <name tal:content="here/pretty_title_or_id">Marker title</name> 
     14    <description tal:content="here/kml_description">Description</description> 
    1515    <Point> 
    16       <coordinates tal:content="string:${marker/point/longitude},${marker/point/latitude}">139.71,35.73</coordinates> 
     16      <coordinates tal:content="string:${here/point/longitude},${here/point/latitude}">139.71,35.73</coordinates> 
    1717    </Point> 
    1818  </Placemark> 
Note: See TracChangeset for help on using the changeset viewer.