Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I use this expression to set the line-color of a layer.

map.addLayer({
  ...
  'paint': {
    'line-color': ['get', 'color'],
  },
  ...
})

But what if the color attribute is not defined ? Is there a way to set a fallback value ? Thanks.

question from:https://stackoverflow.com/questions/65942913/mapbox-api-how-can-i-set-a-fallback-for-the-get-expression

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
666 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can easily do this with the coalesce expression (docs here), which will always resolve to the first non-null value in the provided list of values.

In your example, this would something like:

map.addLayer({
  ...
  'paint': {
    'line-color': ['coalesce', ['get', 'color'], '#00ffff']
  },
  ...
})

There's a more involved example of this expression being used to determine an icon fallback here.


?? disclaimer: I currently work at Mapbox ??


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...