teovillanueva / react-native-web-maps

Cross platform maps for react & react-native 🗺
https://teovillanueva.github.io/react-native-web-maps/
MIT License
54 stars 14 forks source link

How to remove the buttons Map / Satellite? #38

Closed joancifo closed 3 months ago

joancifo commented 7 months ago

image

thanks!

omardlhz commented 3 months ago

To the MapView options, pass in mapTypeControl: false

Like this:


<MapView
        provider="google"
        options={{
          mapTypeControl: false,
        }}
      >

If you're using typescript, dont forget to add app.d.ts to the root of your project.

app.d.ts


/// <reference types="@teovilla/react-native-web-maps/dist/typescript/override-types" />