From 5267ffdd5cb787155c68f7781ba97cd4eb6f2acc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Thu, 22 Jan 2026 14:54:01 +0700 Subject: [PATCH] Log map features on click --- app/components/map.gjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/components/map.gjs b/app/components/map.gjs index 3df6b9c..064ce5a 100644 --- a/app/components/map.gjs +++ b/app/components/map.gjs @@ -486,6 +486,8 @@ export default class MapComponent extends Component { let selectedFeatureType = null; if (features && features.length > 0) { + console.debug(`Found ${features.length} features in map layer:`); + for (const f of features) { console.debug(f) } const bookmarkFeature = features.find((f) => f.get('isBookmark')); if (bookmarkFeature) { clickedBookmark = bookmarkFeature.get('originalPlace');