【发布时间】:2022-06-22 04:22:32
【问题描述】:
当我点击 Android 中显示的标记方向工具栏时,我使用的是 React 原生地图(Google 地图),但该工具栏未在 iOS 中显示。
有什么方法可以在 iOS 中显示这个。
<MapView
style={{ flex: 1 }}
initialRegion={{
latitude: lat,
longitude: lon,
latitudeDelta: 0.0922,
longitudeDelta: 0.0421,
}}
minZoomLevel={16}
provider='google'
>
<MapView.Marker
coordinate={{
latitude: lat,
longitude: lon
}}
title={address}
>
<Image resizeMode={'contain'} source={{ uri: markerIconUrl }} size={'xs'} alt={address} />
</MapView.Marker>
</MapView>
【问题讨论】:
标签: javascript reactjs react-native react-native-maps