From 688e8eda8dd193188ef6938e0d31b16f1d917710 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Mon, 23 Feb 2026 20:16:24 +0400 Subject: [PATCH] Add more place types --- app/utils/osm.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/app/utils/osm.js b/app/utils/osm.js index e2f178f..1ac0389 100644 --- a/app/utils/osm.js +++ b/app/utils/osm.js @@ -41,13 +41,17 @@ export function getPlaceType(tags) { tags.shop || tags.tourism || tags.leisure || + tags.historic || tags.office || tags.craft || - tags.historic || - tags.place || tags.building || tags.landuse || - tags.natural; + tags.place || + tags.natural || + tags.public_transport || + tags.aeroway || + tags.border_type || + tags.admin_title; return humanizeOsmTag(rawType); }