From 1efcaee6369bbc9620f6b8f6d2e88de6b1942be2 Mon Sep 17 00:00:00 2001 From: charlie Date: Thu, 6 Aug 2026 14:02:18 -0600 Subject: [PATCH 1/2] Render Cemetery labels --- historical/historical.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/historical/historical.json b/historical/historical.json index 23ce22ec..04729b1a 100644 --- a/historical/historical.json +++ b/historical/historical.json @@ -6062,6 +6062,28 @@ "text-halo-width": 1 } }, + { + "id": "landuse_areas_labels_cemetery", + "type": "symbol", + "source": "ohm", + "source-layer": "landuse_points_centroids", + "minzoom": 14, + "maxzoom": 24, + "filter": ["==", ["get", "type"], "cemetery"], + "layout": { + "icon-image": "cross-18", + "text-field": ["get", "name"], + "text-size": 11, + "text-anchor": "top", + "text-offset": [0, 0.75], + "text-font": ["OpenHistorical"] + }, + "paint": { + "text-color": "rgba(95, 107, 71, 1)", + "text-halo-color": "rgba(245, 239, 239, 1)", + "text-halo-width": 1 + } + }, { "id": "landuse_areas_labels_school", "type": "symbol", From 300b0bd77f0adaaa539a1f3ccaf116d11a7a8eec Mon Sep 17 00:00:00 2001 From: charlie Date: Thu, 6 Aug 2026 14:22:12 -0600 Subject: [PATCH 2/2] Filter cemetery icons by religion --- historical/historical.json | 53 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 51 insertions(+), 2 deletions(-) diff --git a/historical/historical.json b/historical/historical.json index 04729b1a..f34f060b 100644 --- a/historical/historical.json +++ b/historical/historical.json @@ -6063,13 +6063,25 @@ } }, { - "id": "landuse_areas_labels_cemetery", + "id": "landuse_areas_labels_cemetery_christian", "type": "symbol", "source": "ohm", "source-layer": "landuse_points_centroids", "minzoom": 14, "maxzoom": 24, - "filter": ["==", ["get", "type"], "cemetery"], + "filter": [ + "all", + ["==", ["get", "type"], "cemetery"], + ["==", ["get", "religion"], "christian"], + [ + "!", + [ + "in", + ["get", "denomination"], + ["literal", ["jehovahs_witness", "mormon", "iglesia_ni_cristo"]] + ] + ] + ], "layout": { "icon-image": "cross-18", "text-field": ["get", "name"], @@ -6084,6 +6096,43 @@ "text-halo-width": 1 } }, + { + "id": "landuse_areas_labels_cemetery", + "type": "symbol", + "source": "ohm", + "source-layer": "landuse_points_centroids", + "minzoom": 14, + "maxzoom": 24, + "filter": [ + "all", + ["==", ["get", "type"], "cemetery"], + [ + "!", + [ + "all", + ["==", ["get", "religion"], "christian"], + [ + "!", + [ + "in", + ["get", "denomination"], + ["literal", ["jehovahs_witness", "mormon", "iglesia_ni_cristo"]] + ] + ] + ] + ] + ], + "layout": { + "text-field": ["get", "name"], + "text-size": 11, + "text-font": ["OpenHistorical"] + }, + "paint": { + "text-color": "rgba(95, 107, 71, 1)", + "text-halo-color": "rgba(245, 239, 239, 1)", + "text-halo-width": 1 + } + }, { "id": "landuse_areas_labels_school", "type": "symbol",