source: extensions/piwigo-openstreetmap/template/osm-map.tpl @ 24865

Last change on this file since 24865 was 24677, checked in by ddtddt, 11 years ago

[extensions] - piwigo-openstreetmap - add file for translate

File size: 1.3 KB
Line 
1<!DOCTYPE html>
2<html>
3<head>
4<meta http-equiv="content-type" content="text/html; charset={$CONTENT_ENCODING}" />
5<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
6<meta name="robots" content="noindex,nofollow" />
7<title>{$GALLERY_TITLE}</title>
8</head>
9<body>
10
11{html_head}
12<link href="{$OSM_PATH}leaflet/leaflet.css" rel="stylesheet">
13<!--[if lte IE 8]><link rel="stylesheet" href="{$OSM_PATH}leaflet/leaflet.ie.css" /><![endif]-->
14<script src="{$OSM_PATH}leaflet/leaflet.js"></script>
15<link rel="stylesheet" href="{$OSM_PATH}leaflet/MarkerCluster.css" />
16<link rel="stylesheet" href="{$OSM_PATH}leaflet/MarkerCluster.Default.css" />
17<!--[if lte IE 8]><link rel="stylesheet" href="{$OSM_PATH}leaflet/MarkerCluster.Default.ie.css" /><![endif]-->
18<script src="{$OSM_PATH}leaflet/leaflet.markercluster.js"></script>
19{/html_head}
20{html_style}
21{literal}
22html, body {
23        height: 98%;
24        margin: 0;
25}
26
27#map {
28        min-height: 100%;
29}
30{/literal}
31{/html_style}
32
33<span> <a href="{$HOME}">{$HOME_NAME}</a> <a href="{$HOME_PREV}">{$HOME_PREV_NAME}</a> - {$TOTAL} - Mouse over a cluster to see the bounds of its children and click a cluster to zoom to those bounds</span>
34<div id="map"></div>
35<script type="text/javascript">{$OSMJS}</script>
36
37{get_combined_scripts load='footer'}
38</body>
39</html>
Note: See TracBrowser for help on using the repository browser.