[
"case",
["any",
["!", ["has", "name"]],
["==", ["get", "name"], ""]
],
["get", "name:en"],
["any",
["!", ["has", "name:en"]],
["==", ["get", "name:en"], ""]
],
["get", "name"],
[
"format",
["get", "name"],
"\n",
["get", "name:en"],
{
"font-scale": 0.8
},
],
],
Describe the issue
We used a
formatexpression for a set of styles recently that caused some odd rendering with Maplibre in Chartographer:The expressions for these look like this:
...but with fields to pull from, so really more like:
It looks like Chartographer is converting these
formatexpressions intostepexpressions for some reason. Not sure what's going on there.