From 5d9c6ebc8909e49c3fa0f6ee8c1592a0f65a5c0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Sun, 23 Aug 2026 10:08:48 -0600 Subject: [PATCH] Prioritize craft before amenity for place type It's usually more distinct and useful/interesting --- app/utils/osm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils/osm.js b/app/utils/osm.js index e0a16b4..73ec343 100644 --- a/app/utils/osm.js +++ b/app/utils/osm.js @@ -34,13 +34,13 @@ export function getLocalizedName(tags, defaultName = 'Untitled Place') { } const PLACE_TYPE_KEYS = [ + 'craft', 'amenity', 'shop', 'tourism', 'historic', 'leisure', 'office', - 'craft', 'building', 'landuse', 'public_transport',