Added redmarkers
This commit is contained in:
parent
04c2d1b8ed
commit
9cfcf6125f
2 changed files with 20 additions and 2 deletions
20
map.html
20
map.html
|
@ -82,6 +82,14 @@
|
|||
</script>
|
||||
<script type="text/javascript">
|
||||
var popuptemplate = Handlebars.compile($('#popup-template').html());
|
||||
var RedIcon = L.Icon.Default.extend({
|
||||
options: {
|
||||
iconUrl: 'red-marker.png'
|
||||
}
|
||||
});
|
||||
var redIcon = new RedIcon();
|
||||
var BlueIcon = L.Icon.Default.extend({});
|
||||
var blueIcon = new BlueIcon();
|
||||
|
||||
function onEachFeature(feature, layer) {
|
||||
if (feature.properties) {
|
||||
|
@ -89,6 +97,15 @@
|
|||
}
|
||||
}
|
||||
|
||||
function pointToLayer(feature, latlng) {
|
||||
if (feature.properties) {
|
||||
if (!feature.properties.hours.saturday && !feature.properties.hours.sunday) {
|
||||
return L.marker(latlng, {icon:blueIcon});
|
||||
}
|
||||
}
|
||||
return L.marker(latlng, {icon: redIcon});
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
var map = L.map('map').setView([51.0475378, 3.7261835], 13);
|
||||
var googleLayer = new L.Google('TERRAIN');
|
||||
|
@ -97,7 +114,8 @@
|
|||
$.getJSON('data.json')
|
||||
.done(function(data) {
|
||||
var geojson = L.geoJson(data, {
|
||||
onEachFeature: onEachFeature
|
||||
onEachFeature: onEachFeature,
|
||||
pointToLayer: pointToLayer
|
||||
});
|
||||
map.addLayer(geojson);
|
||||
});
|
||||
|
|
BIN
red-marker.png
Normal file
BIN
red-marker.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
Loading…
Reference in a new issue