source: products/qPloneGoogleMaps/tags/0.1.0/skins/qPloneGoogleMaps/overlay_view.pt @ 1591

Last change on this file since 1591 was 1, checked in by myroslav, 18 years ago

Building directory structure

  • Property svn:eol-style set to native
File size: 1.6 KB
Line 
1<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
2      lang="en"
3      metal:use-macro="here/main_template/macros/master"
4      i18n:domain="plone">
5<head>
6  <metal:block fill-slot="javascript_head_slot">
7    <script type="text/javascript" src=""
8            tal:attributes="src string:http://maps.google.com/maps?file=api&amp;v=2&amp;key=${here/getMapKey}">
9    </script>
10    <span tal:replace="structure python:here.maps_markers(here.getMarkers(), node='mapView', events=True, color=here.getMarkersColor(), loc=here.geoLocation(), controls=here.getMapControl(), typeControls=here.getTypeControl(), overviewControls=here.getOverviewControl(), maptype=here.getMapType(),)" />
11  </metal:block>
12</head>
13
14<body>
15
16<div metal:fill-slot="main">
17<metal:main_macro define-macro="main">
18    <metal:body define-macro="body_macro">
19        <div metal:use-macro="here/document_actions/macros/document_actions">
20             Document actions (print, sendto etc)
21        </div>
22
23        <h1 tal:content="here/title_or_id" class="documentFirstHeading">
24            Title or id
25        </h1>
26
27        <a href=""
28           class="link-parent"
29           tal:define="parent_url python:here.navigationParent(here, template_id)"
30           tal:condition="parent_url"
31           tal:attributes="href parent_url"
32           i18n:translate="go_to_parent_url">
33            Up one level
34        </a>
35
36        <div class="documentDescription" tal:content="structure here/Description">
37            description
38        </div>
39
40        <div id="mapView" style="position: relative; height: 480px;"></div>
41    </metal:body>
42</metal:main_macro>
43
44</div>
45
46</body>
47</html>
Note: See TracBrowser for help on using the repository browser.