Fixed the build

This commit is contained in:
Pieter Vander Vennet 2020-08-22 03:15:42 +02:00
parent 560c8e1567
commit cce9207a35
19 changed files with 183 additions and 29 deletions

View file

@ -61,7 +61,7 @@ export default class BikeCafes extends LayerDefinition {
return {
color: "#00bb00",
icon: {
iconUrl: self.icon,
iconUrl: "./assets/bike/cafe.svg",
iconSize: [50, 50],
iconAnchor: [25,50]
}

View file

@ -49,7 +49,7 @@ export default class BikeParkings extends LayerDefinition {
return {
color: "#00bb00",
icon: {
iconUrl: self.icon,
iconUrl: "./assets/bike/parking.svg",
iconSize: [50, 50],
iconAnchor: [25,50]
}

View file

@ -11,7 +11,7 @@ export class ClimbingTree extends LayerDefinition {
super("climbingtree");
const t = Translations.t.climbingTrees.layer;
this.title = new FixedText(t.title);
const icon = "assets/walkbybrussels/tree.svg";
const icon = "./assets/themes/nature/tree.svg";
this.icon = icon;
this.description = t.description;
this.style = (tags) => {

View file

@ -54,7 +54,7 @@ export class DrinkingWater extends LayerDefinition {
return {
color: "#00bb00",
icon: {
iconUrl: self.icon,
iconUrl: "./assets/bike/drinking_water.svg",
iconSize: [50, 50],
iconAnchor: [25,50]
}