Hello,
With the following code, many props like :
- attributionEnabled
- zoomEnabled
...
Are ignored (not working...)
Code example :
import MapBox from "@rnmapbox/maps";
import { View } from "react-native";
export default function ZeroScreen() {
return (
<View style={{ flex: 1 }}>
<MapBox.MapView
style={{ flex: 1 }}
attributionEnabled={false}
compassEnabled={false}
logoEnabled={false}
scrollEnabled={false}
zoomEnabled={false}
pitchEnabled={false}
></MapBox.MapView>
</View>
);
}
Problem :

Lib version :
"@rnmapbox/maps": "10.1.33",
Thanks for your help.
It used to work like 3/4 weeks ago...