我想在我的应用程序中实现平面地图导航。请建议任何可用的库或实现它的方法。
尝试以下,但不允许添加自定义地图/楼层等。
<MapView
style={styles.mapViewStyle}
initialRegion={{
latitude: 37.78825,
longitude: -122.4324,
latitudeDelta: 0.0922,
longitudeDelta: 0.0421,
}}>
<MapView.Marker draggable
// calloutOffset={MapView.Marker.Point{x:0, y:30}}
pinColor='steelblue'
coordinate={{latitude: 37.78825,longitude: -122.4324,}}
title='San Francisco'
description='City by the Bay'
onDragEnd={(e) => this.setState({ x: e.nativeEvent.coordinate })}
/>
</MapView>