From 9deb39884aed58cab371be14228d46d3f29c3925 Mon Sep 17 00:00:00 2001 From: Taras Novak Date: Fri, 17 Apr 2020 07:47:29 -0500 Subject: [PATCH] #85 changed default map config to show buildings and roads --- src/config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.ts b/src/config.ts index b497ff8..f1f7faf 100644 --- a/src/config.ts +++ b/src/config.ts @@ -112,10 +112,10 @@ export const mapConfigTemplate: any = { "topLayerGroups": {}, "visibleLayerGroups": { "border": true, - "building": false, + "building": true, "label": true, "land": true, - "road": false, + "road": true, "water": true } },