From 2a5e7ad00bbe9ae25e3febb6ff0c4a8f04236639 Mon Sep 17 00:00:00 2001 From: Kanahiro Date: Sun, 25 Aug 2024 22:27:31 +0900 Subject: [PATCH 1/2] fix: correctly pick a state of inspect mode --- src/viewer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/viewer.html b/src/viewer.html index 6fc1df5..ac87784 100644 --- a/src/viewer.html +++ b/src/viewer.html @@ -116,7 +116,7 @@ map.addControl(inspect); map.on('click', (e) => { - if (inspect.showInspectMap) { + if (inspect._showInspectMap) { return; } // detect layers From 28356f4b7bfc67ec51d598533a9f8b3533450804 Mon Sep 17 00:00:00 2001 From: Kanahiro Date: Sun, 25 Aug 2024 22:27:54 +0900 Subject: [PATCH 2/2] 0.0.14 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 37e708d..a040198 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "MapLibre", "description": "", "publisher": "kiguchi", - "version": "0.0.13", + "version": "0.0.14", "engines": { "vscode": "^1.92.0" },