Fixed icons
This commit is contained in:
parent
4a85fa82c3
commit
0e63eb5a52
7 changed files with 2 additions and 10 deletions
|
@ -30,7 +30,6 @@ export default class BikeCafes extends LayerDefinition {
|
|||
this.presets = [
|
||||
{
|
||||
title: Translations.t.cyclofix.cafe.title,
|
||||
icon: "/assets/bike/cafe.svg",
|
||||
tags : [
|
||||
new Tag("amenity", "pub"),
|
||||
new Tag("pub", "cycling"),
|
||||
|
|
|
@ -21,7 +21,6 @@ export default class BikeParkings extends LayerDefinition {
|
|||
this.overpassFilter = new Tag("amenity", "bicycle_parking");
|
||||
this.presets = [{
|
||||
title: Translations.t.cyclofix.parking.title,
|
||||
icon: "/assets/bike/parking.svg",
|
||||
tags: [
|
||||
new Tag("amenity", "bicycle_parking"),
|
||||
]
|
||||
|
|
|
@ -27,7 +27,6 @@ export default class BikeShops extends LayerDefinition {
|
|||
this.overpassFilter = new Tag("shop", "bicycle");
|
||||
this.presets = [{
|
||||
title: Translations.t.cyclofix.shop.title,
|
||||
icon: "/assets/bike/repair_shop.svg",
|
||||
tags: [
|
||||
new Tag("shop", "bicycle"),
|
||||
]
|
||||
|
|
|
@ -37,19 +37,16 @@ export default class BikeStations extends LayerDefinition {
|
|||
{
|
||||
title: tr.titlePump,
|
||||
description: tr.services.pump,
|
||||
icon: "/assets/bike/pump.svg",
|
||||
tags: [this.repairStation, this.pump, this.notools]
|
||||
},
|
||||
{
|
||||
title: tr.titleRepair,
|
||||
description: tr.services.tools,
|
||||
icon: "/assets/bike/repair_station.svg",
|
||||
tags: [this.repairStation, this.tools, this.nopump]
|
||||
},
|
||||
{
|
||||
title: tr.titlePumpAndRepair,
|
||||
description: tr.services.both,
|
||||
icon: "/assets/bike/repair_station_pump.svg",
|
||||
tags: [this.repairStation, this.tools, this.nopump]
|
||||
},
|
||||
|
||||
|
|
|
@ -21,7 +21,6 @@ export class Birdhide extends LayerDefinition {
|
|||
presets: [
|
||||
{
|
||||
title: "Vogelkijkplaats",
|
||||
icon: "/assets/nature/birdhide.svg",
|
||||
tags: [Birdhide.birdhide]
|
||||
}
|
||||
],
|
||||
|
|
|
@ -23,7 +23,6 @@ export class DrinkingWater extends LayerDefinition {
|
|||
|
||||
this.presets = [{
|
||||
title: Translations.t.cyclofix.drinking_water.title,
|
||||
icon: "/assets/bike/drinking_water.svg",
|
||||
tags: [new Tag("amenity", "drinking_water")]
|
||||
}];
|
||||
this.maxAllowedOverlapPercentage = 10;
|
||||
|
|
|
@ -426,8 +426,8 @@ export default class Translations {
|
|||
}
|
||||
},
|
||||
cafe: {
|
||||
name: new T({en: "bike cafe", nl: "fietscafé", fr: "TODO: fr"}),
|
||||
title: new T({en: "Bike cafe", nl: "fietscafé", fr: "TODO: fr"}),
|
||||
name: new T({en: "Bike cafe", nl: "Fietscafé", fr: "TODO: fr"}),
|
||||
title: new T({en: "Bike cafe", nl: "Fietscafé", fr: "TODO: fr"}),
|
||||
qName: {
|
||||
question: new T({en: "What is the name of this bike cafe?", nl: "Wat is de naam van dit fietscafé?", fr: "TODO: fr"}),
|
||||
render: new T({en: "This bike cafe is called {name}", nl: "Dit fietscafé heet <b>{name}</b>", fr: "TODO: fr"}),
|
||||
|
|
Loading…
Reference in a new issue