Compare commits
4 commits
master
...
7734485917
Author | SHA1 | Date | |
---|---|---|---|
|
4690583c57 | ||
|
9ee63912d6 | ||
|
b2cd8eb16c | ||
|
e7966d490f |
4 changed files with 41 additions and 18 deletions
BIN
src/img/Online.png
Normal file
BIN
src/img/Online.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.7 KiB |
BIN
src/img/green-marker.png
Normal file
BIN
src/img/green-marker.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
|
@ -36,15 +36,17 @@
|
|||
<h3>{{name}} ({{capacity}} pl.)</h3>
|
||||
{{#if wheelchair}}<img src="img/Wheelchair_symbol.svg" class="wheelchair" style="width:30px;height:30px;">{{/if}}
|
||||
{{#if wifi}}<img src="img/Logo_WiFi.svg" class="wifi" style="width:40px;height:20px;">{{/if}}
|
||||
{{#if online}}<img src="img/Online.png" class="wifi" style="width:50px;height:50px;">{{/if}}
|
||||
<img src="img/{{type}}.png" class="type">
|
||||
<div class="location">Locatie: {{address}}</div>
|
||||
<div class="location">{{#if online}}Link: <a href={{address}}>{{address}}</a>{{else}}Locatie: {{address}}{{/if}}</div>
|
||||
{{#if online}}
|
||||
{{else}}
|
||||
<div class="period">{{#if period.start}}
|
||||
Periode: {{date period.start}} tot {{date period.end}}
|
||||
{{else}}
|
||||
Open gedurende het hele jaar.
|
||||
{{/if}}
|
||||
</div>
|
||||
<h4>Openingsuren</h4>
|
||||
<table class="desktop">
|
||||
<tr>
|
||||
<td>Maandag</td>
|
||||
|
@ -64,6 +66,9 @@
|
|||
<td>{{#if hours.sunday}}{{hours.sunday}}{{else}}Gesloten{{/if}}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h4>Openingsuren</h4>
|
||||
|
||||
<table class="mobile">
|
||||
<tr>
|
||||
<td>Maandag</td>
|
||||
|
@ -88,8 +93,10 @@
|
|||
<td>{{#if hours.sunday}}{{hours.sunday}}{{else}}Gesloten{{/if}}</td>
|
||||
</tr>
|
||||
</table>
|
||||
{{/if}}
|
||||
{{#if extra}}{{{extra}}}{{/if}}
|
||||
</div>
|
||||
|
||||
</script>
|
||||
|
||||
<script id="info-template" type="text/x-handlebars-template">
|
||||
|
@ -112,11 +119,15 @@
|
|||
</div>
|
||||
<div style="width: 125px; height: 18px; padding-top: 5px; padding-left: 5px;">
|
||||
<div style="height: 10px; width: 10px; background: rgb(36, 126, 202); margin-top: 1px; margin-left: 5px;"></div>
|
||||
<span style="position: absolute; left: 25px; top: 30px;">Enkel week</span>
|
||||
<span style="position: absolute; left: 25px; top: 29px;">Enkel week</span>
|
||||
</div>
|
||||
<div style="width: 125px; height: 18px; padding-top: 5px; padding-left: 5px;">
|
||||
<div style="height: 10px; width: 10px; background: rgb(120,120,120); margin-top: 1px; margin-left: 5px;"></div>
|
||||
<span style="position: absolute; left: 25px; top: 55px;">Opent binnenkort</span>
|
||||
<span style="position: absolute; left: 25px; top: 53px;">Opent binnenkort</span>
|
||||
</div>
|
||||
<div style="width: 125px; height: 18px; padding-top: 5px; padding-left: 5px;">
|
||||
<div style="height: 10px; width: 10px; background: rgb(124,252,120); margin-top: 1px; margin-left: 5px;"></div>
|
||||
<span style="position: absolute; left: 25px; top: 77px;">Online</span>
|
||||
</div>
|
||||
<div style="width: 140px; height: 18px; padding-top: 5px; padding-left: 5px;" class="holiday">
|
||||
<div style="height: 10px; width: 10px; background: rgb(121, 230, 121); margin-top: 0px; margin-left: 5px;"></div>
|
||||
|
|
|
@ -24,11 +24,17 @@ $(document).ready(function() {
|
|||
iconUrl: "img/grey-marker.png"
|
||||
}
|
||||
});
|
||||
var GreenIcon = L.Icon.Default.extend({
|
||||
options: {
|
||||
iconUrl: "img/green-marker.png"
|
||||
}
|
||||
});
|
||||
|
||||
var blueIcon = new BlueIcon();
|
||||
var redIcon = new RedIcon();
|
||||
var christmasIcon = new ChristmasIcon();
|
||||
var greyIcon = new GreyIcon();
|
||||
var greenIcon = new GreenIcon();
|
||||
|
||||
var now = new Date();
|
||||
var christmasSeason =
|
||||
|
@ -37,6 +43,8 @@ $(document).ready(function() {
|
|||
|
||||
function onEachFeature(feature, layer) {
|
||||
if (feature.properties) {
|
||||
var prop = feature.properties;
|
||||
prop["online"] = feature.properties.address.substring(0,5)==="https";
|
||||
layer.bindPopup(popuptemplate(feature.properties), {
|
||||
showOnMouseOver: true
|
||||
});
|
||||
|
@ -60,6 +68,10 @@ $(document).ready(function() {
|
|||
icon = blueIcon;
|
||||
iconDescription = "blue";
|
||||
}
|
||||
if (feature.properties.address.substring(0,5)==="https") {
|
||||
icon = greenIcon;
|
||||
iconDescription = "green";
|
||||
}
|
||||
}
|
||||
return new HoverMarker(latlng, { icon: icon, riseOnHover: true});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue