From 819a33e299580e54d2c3f73c08fa06e24de31c80 Mon Sep 17 00:00:00 2001 From: pietervdvn Date: Tue, 8 Feb 2022 00:34:07 +0100 Subject: [PATCH] Add some comments on bing maps --- Logic/Actors/AvailableBaseLayersImplementation.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Logic/Actors/AvailableBaseLayersImplementation.ts b/Logic/Actors/AvailableBaseLayersImplementation.ts index d5df62bab..4cea4539c 100644 --- a/Logic/Actors/AvailableBaseLayersImplementation.ts +++ b/Logic/Actors/AvailableBaseLayersImplementation.ts @@ -36,8 +36,8 @@ export default class AvailableBaseLayersImplementation implements AvailableBaseL const layer = features[i]; const props = layer.properties; - if (props.id === "Bing") { - // Doesnt work + if (props.type === "bing") { + // A lot of work to implement - see https://github.com/pietervdvn/MapComplete/issues/648 continue; }