harvester-d4science/templates/ckanext/harvest/map.html

30 lines
924 B
HTML
Raw Normal View History

<html xmlns:py="http://genshi.edgewall.org/"
xmlns:i18n="http://genshi.edgewall.org/i18n"
xmlns:xi="http://www.w3.org/2001/XInclude"
py:strip="">
<py:def function="page_title">WMS preview</py:def>
<py:def function="optional_head">
<link type="text/css" rel="stylesheet" media="all" href="/ckanext/harvest/mapviewer.css" />
<script type="text/javascript" src="/ckanext/harvest/js/openlayers/OpenLayers_ckan.js"></script>
<script type="text/javascript" src="/ckanext/harvest/js/mapviewer.js"></script>
</py:def>
<div py:match="content">
<div class="map-view-content">
<h2>WMS preview</h2>
<script type="text/javascript">
//<![CDATA[
$(document).ready(function(){
CKAN.MapViewer.setup("${c.url}");
})
//]]>
</script>
<div id="map"></div>
<div id="layers"></div>
</div>
</div>
<xi:include href="../../layout.html" />
</html>