react-native-web-community/react-native-web-maps

Setting mapstyle (ie. satellite)

Closed this issue · 2 comments

Is this possible to be added?

You can pass a custom map style into the options prop. See react-google-maps reference docs, search "Styled Map".

<MapView
  initialRegion={{
    latitude: 37.78825,
    longitude: -122.4324,
    latitudeDelta: 0.0922,
    longitudeDelta: 0.0421,
  }}
  options={{ styles: gmapstyle }}
/>

Thank you very much, I was not aware of the options parameter. I will close this issue.