Skip to content

Commit 16bd76f

Browse files
bdonwipfli
andauthored
add island names [#294] (#424)
* add island names [#294] * add island names example * island names test * Tune text max width --------- Co-authored-by: Oliver Wipfli <[email protected]>
1 parent 8b2250f commit 16bd76f

File tree

4 files changed

+52
-0
lines changed

4 files changed

+52
-0
lines changed

app/src/examples.json

+7
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,12 @@
8282
"tags": ["landuse"],
8383
"center": [-118.0726, 34.8328],
8484
"zoom": 10
85+
},
86+
{
87+
"name": "island-names",
88+
"description": "label the names of prominent islands at zoom 7",
89+
"tags": ["earth"],
90+
"center": [-123.22, 48.111],
91+
"zoom": 7
8592
}
8693
]

styles/src/base_layers.ts

+23
Original file line numberDiff line numberDiff line change
@@ -1477,6 +1477,29 @@ export function labels_layers(
14771477
"text-halo-color": t.water,
14781478
},
14791479
},
1480+
{
1481+
id: "earth_label_islands",
1482+
type: "symbol",
1483+
source: source,
1484+
"source-layer": "earth",
1485+
filter: ["in", "kind", "island"],
1486+
layout: {
1487+
"text-font": [t.italic || "Noto Sans Italic"],
1488+
"text-field": get_multiline_name(
1489+
lang,
1490+
script,
1491+
t.regular,
1492+
) as DataDrivenPropertyValueSpecification<string>,
1493+
"text-size": 10,
1494+
"text-letter-spacing": 0.1,
1495+
"text-max-width": 8,
1496+
},
1497+
paint: {
1498+
"text-color": t.subplace_label,
1499+
"text-halo-color": t.subplace_label_halo,
1500+
"text-halo-width": 1,
1501+
},
1502+
},
14801503
{
14811504
id: "water_label_lakes",
14821505
type: "symbol",

tiles/src/main/java/com/protomaps/basemap/layers/Earth.java

+9
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,15 @@ public void processOsm(SourceFeature sf, FeatureCollector features) {
6464

6565
OsmNames.setOsmNames(feat, sf, 0);
6666
}
67+
68+
if (sf.canBePolygon() && sf.hasTag("place", "island")) {
69+
var feat = features.innermostPoint(LAYER_NAME)
70+
.setId(FeatureId.create(sf))
71+
.setAttr("kind", "island")
72+
.setMinPixelSize(20)
73+
.setMinZoom(6);
74+
OsmNames.setOsmNames(feat, sf, 0);
75+
}
6776
}
6877

6978
@Override

tiles/src/test/java/com/protomaps/basemap/layers/EarthTest.java

+13
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,19 @@ void cliff() {
3737
)));
3838
}
3939

40+
@Test
41+
void island() {
42+
assertFeatures(6,
43+
List.of(Map.of("kind", "island", "_minzoom", 6)),
44+
process(SimpleFeature.create(
45+
newPolygon(0, 0, 0, 1, 1, 1, 0, 0),
46+
new HashMap<>(Map.of("place", "island")),
47+
"osm",
48+
null,
49+
0
50+
)));
51+
}
52+
4053
@Test
4154
void testNe() {
4255
assertFeatures(15,

0 commit comments

Comments
 (0)