Merge branch 'midgard-master'

This commit is contained in:
redfast00 2020-05-22 22:36:51 +02:00
commit 8774e1921d
No known key found for this signature in database
GPG Key ID: 5946E0E34FD0553C
1 changed files with 3 additions and 3 deletions

View File

@ -4,19 +4,19 @@ $(document).ready(function() {
});
L.Icon.Default.imagePath = "img/";
L.Icon.Default.imagePath = "img";
var popuptemplate = Handlebars.compile($("#popup-template").html());
var BlueIcon = L.Icon.Default.extend({});
var RedIcon = L.Icon.Default.extend({
options: {
iconUrl: "red-marker.png"
iconUrl: "img/red-marker.png"
}
});
var ChristmasIcon = L.Icon.Default.extend({
options: {
iconUrl: "christmas-marker.png"
iconUrl: "img/christmas-marker.png"
}
});