From 98e299eb07e4a01d4ef16169598a0daa08e2fa9f Mon Sep 17 00:00:00 2001 From: Pieter Fiers Date: Thu, 16 Jul 2020 16:25:27 +0200 Subject: [PATCH] Make bike icons 50*50 --- Customizations/Layers/BikeParkings.ts | 2 +- Customizations/Layers/BikeStations.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Customizations/Layers/BikeParkings.ts b/Customizations/Layers/BikeParkings.ts index a940a84..ccd737e 100644 --- a/Customizations/Layers/BikeParkings.ts +++ b/Customizations/Layers/BikeParkings.ts @@ -36,7 +36,7 @@ export default class BikeParkings extends LayerDefinition { color: "#00bb00", icon: L.icon({ iconUrl: self.icon, - iconSize: [40, 40] + iconSize: [50, 50] }) }; }; diff --git a/Customizations/Layers/BikeStations.ts b/Customizations/Layers/BikeStations.ts index fd3a9fb..ca25fac 100644 --- a/Customizations/Layers/BikeStations.ts +++ b/Customizations/Layers/BikeStations.ts @@ -81,7 +81,7 @@ export default class BikeStations extends LayerDefinition { color: "#00bb00", icon: L.icon({ iconUrl: iconUrl, - iconSize: [40, 40] + iconSize: [50, 50] }) }; };