Reputation: 2127
I'm using the Mapbox library for React Native. When the user is zoomed out with a pitch ("3D mode"), they can see "off the map". This "off the map" colour is the same as the "on map" land colour and it doesn't look great. I was wondering how I could change the style/colour of "off the map", or if there's another nice way to handle this. Thanks!
Upvotes: 1
Views: 623
Reputation: 715
It's going to depend on what style you're using. I believe all the styles take the color of the land (which is why you're seeing the green).
If you create your own style from scratch, you can adjust the background
layer to reflect the color you'd like to see.
Upvotes: 2