2014-12-09 19:54:50 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>Blokken in Gent</title>
|
2014-12-11 08:56:11 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
|
|
|
2014-12-09 19:54:50 +01:00
|
|
|
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
|
|
|
|
<link rel="stylesheet" href="map.css" />
|
|
|
|
<script src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script>
|
2014-12-11 00:29:18 +01:00
|
|
|
<script src="http://maps.google.com/maps/api/js?key=AIzaSyBAuXgl_O24GqLMl-ylUPLEH7O0wbK3J4A&v=3.2&sensor=false"></script>
|
|
|
|
<script src="leaflet-google.js"></script>
|
2014-12-09 19:54:50 +01:00
|
|
|
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
|
|
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/handlebars.js/2.0.0/handlebars.min.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="map"></div>
|
|
|
|
<script id="popup-template" type="text/x-handlebars-template">
|
|
|
|
<div id="resto-popup">
|
2014-12-10 17:21:02 +01:00
|
|
|
<h3>{{name}} ({{capacity}} pl.)</h3>
|
2014-12-10 15:59:49 +01:00
|
|
|
<img src="{{type}}.png" class="type">
|
2014-12-10 22:26:09 +01:00
|
|
|
<div class="text">Locatie: {{address}}<br />
|
|
|
|
Van {{period.start}} tot {{period.end}}
|
|
|
|
</div>
|
2014-12-10 15:59:49 +01:00
|
|
|
<h4>Openingsuren</h4>
|
2014-12-10 22:26:09 +01:00
|
|
|
<table class="desktop">
|
2014-12-10 17:26:06 +01:00
|
|
|
<tr>
|
|
|
|
<td>Maandag</td>
|
|
|
|
<td>Dinsdag</td>
|
|
|
|
<td>Woensdag</td>
|
|
|
|
<td>Donderdag</td>
|
|
|
|
<td>Vrijdag</td>
|
|
|
|
<td>Zaterdag</td>
|
|
|
|
<td>Zondag</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>{{#if hours.monday}}{{hours.monday}}{{else}}Gesloten{{/if}}</td>
|
|
|
|
<td>{{#if hours.tuesday}}{{hours.tuesday}}{{else}}Gesloten{{/if}}</td>
|
|
|
|
<td>{{#if hours.wednesday}}{{hours.wednesday}}{{else}}Gesloten{{/if}}</td>
|
|
|
|
<td>{{#if hours.thursday}}{{hours.thursday}}{{else}}Gesloten{{/if}}</td>
|
|
|
|
<td>{{#if hours.friday}}{{hours.friday}}{{else}}Gesloten{{/if}}</td>
|
|
|
|
<td>{{#if hours.saturday}}{{hours.saturday}}{{else}}Gesloten{{/if}}</td>
|
|
|
|
<td>{{#if hours.sunday}}{{hours.sunday}}{{else}}Gesloten{{/if}}</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2014-12-10 22:26:09 +01:00
|
|
|
<table class="mobile">
|
2014-12-09 21:11:31 +01:00
|
|
|
<tr>
|
|
|
|
<td>Maandag</td>
|
2014-12-10 15:59:49 +01:00
|
|
|
<td>{{#if hours.monday}}{{hours.monday}}{{else}}Gesloten{{/if}}</td>
|
2014-12-09 21:11:31 +01:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2014-12-10 15:59:49 +01:00
|
|
|
<td>Dinsdag</td>
|
|
|
|
<td>{{#if hours.tuesday}}{{hours.tuesday}}{{else}}Gesloten{{/if}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Woensdag</td>
|
|
|
|
<td>{{#if hours.wednesday}}{{hours.wednesday}}{{else}}Gesloten{{/if}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Donderdag</td>
|
|
|
|
<td>{{#if hours.thursday}}{{hours.thursday}}{{else}}Gesloten{{/if}}</td>
|
|
|
|
</tr><tr>
|
|
|
|
<td>Vrijdag</td>
|
|
|
|
<td>{{#if hours.friday}}{{hours.friday}}{{else}}Gesloten{{/if}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Zaterdag</td>
|
|
|
|
<td>{{#if hours.saturday}}{{hours.saturday}}{{else}}Gesloten{{/if}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Zondag</td>
|
|
|
|
<td>{{#if hours.sunday}}{{hours.sunday}}{{else}}Gesloten{{/if}}</td>
|
2014-12-09 21:11:31 +01:00
|
|
|
</tr>
|
|
|
|
</table>
|
2014-12-09 23:44:57 +01:00
|
|
|
{{#if extra}}{{extra}}{{/if}}
|
2014-12-09 19:54:50 +01:00
|
|
|
</div>
|
|
|
|
</script>
|
2014-12-10 14:00:57 +01:00
|
|
|
<script id="info-template" type="text/x-handlebars-template">
|
|
|
|
<a href="http://zeus.ugent.be/"><img src='logo.png'></a>
|
|
|
|
</script>
|
2014-12-09 19:54:50 +01:00
|
|
|
<script type="text/javascript">
|
|
|
|
var popuptemplate = Handlebars.compile($('#popup-template').html());
|
|
|
|
|
|
|
|
function onEachFeature(feature, layer) {
|
|
|
|
if (feature.properties) {
|
|
|
|
layer.bindPopup(popuptemplate(feature.properties));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$(document).ready(function() {
|
|
|
|
var map = L.map('map').setView([51.0475378, 3.7261835], 13);
|
2014-12-11 00:29:18 +01:00
|
|
|
var googleLayer = new L.Google('TERRAIN');
|
|
|
|
map.addLayer(googleLayer);
|
2014-12-09 20:10:10 +01:00
|
|
|
|
|
|
|
$.getJSON('data.json')
|
|
|
|
.done(function(data) {
|
|
|
|
var geojson = L.geoJson(data, {
|
|
|
|
onEachFeature: onEachFeature
|
|
|
|
});
|
|
|
|
map.addLayer(geojson);
|
|
|
|
});
|
2014-12-10 14:00:57 +01:00
|
|
|
|
|
|
|
var info = L.control();
|
|
|
|
|
|
|
|
info.onAdd = function (map) {
|
|
|
|
var div = L.DomUtil.create('div', 'info');
|
|
|
|
div.innerHTML = Handlebars.compile($('#info-template').html())();
|
|
|
|
|
|
|
|
return div;
|
|
|
|
};
|
|
|
|
|
|
|
|
info.addTo(map);
|
2014-12-09 19:54:50 +01:00
|
|
|
});
|
|
|
|
</script>
|
2014-12-10 00:36:51 +01:00
|
|
|
<script>
|
|
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
|
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
|
|
|
|
|
|
|
ga('create', 'UA-25444917-8', 'auto');
|
|
|
|
ga('send', 'pageview');
|
|
|
|
|
|
|
|
</script>
|
2014-12-09 19:54:50 +01:00
|
|
|
</body>
|
|
|
|
</html>
|