diff --git a/app/utils/osm-icons.js b/app/utils/osm-icons.js index 0f1f7db..0c6ec20 100644 --- a/app/utils/osm-icons.js +++ b/app/utils/osm-icons.js @@ -146,7 +146,6 @@ export const POI_ICON_RULES = [ { tags: { historic: 'wreck' }, icon: 'shipwreck-in-water' }, { tags: { historic: 'ruins' }, icon: 'camera' }, { tags: { historic: 'ruin' }, icon: 'camera' }, - { tags: { historic: 'yes' }, icon: 'camera' }, // Transport { tags: { aeroway: 'aerodrome' }, icon: 'plane-top-right' }, @@ -215,6 +214,9 @@ export const POI_ICON_RULES = [ { tags: { building: 'commercial' }, icon: 'commercial-building' }, { tags: { building: 'apartments' }, icon: 'lowrise-building' }, { tags: { building: 'office' }, icon: 'lowrise-building' }, + + // Fallback + { tags: { historic: true }, icon: 'camera' }, ]; /**