1
我想在我的應用程序中實現樓層地圖導航。請建議任何可用的庫或實現它的方法。室內樓層地圖反應原生
試過以下,但不允許添加自定義地圖/地板等
<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>
我已經試過這個庫,它提供了對地圖的支持,但添加自定義地圖或地板是不可用的。 – AK2016