Google Maps directions button doesn't show up

Using SDK Version 43, Android.

In the mapview when I select a marker, the two icons from Google Maps appear, allowing me to press the directions button for example, to open Google Maps and get directions from my location to the marker I have selected. But when I build the app, (using EAS), those buttons does not appear.

Screenshot_20220109-195904_Expo Go

Furthermore, in the mapview code, I have set “showsMyLocationButton” to true, yet that button does not appear either when I build the app using EAS.

<MapView
  style={globalStyles.mapContainer}
  initialRegion={{
    latitude: coords.lan,
    longitude: coords.long,
    latitudeDelta: 0.1,
    longitudeDelta: 0.1
  }}
  provider={MapView.PROVIDER_GOOGLE}
  showsMyLocationButton={true} <--------
  showsUserLocation={true}
  showsCompass={true}
  zoomEnabled={true}
  rotateEnabled={true}
  toolbarEnabled={true}
/>

What am I missing here?

Bump :slight_smile:

Hey i havn’t tried it. But here is some ideas

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.