室内地板地图反应原生

时间:2016-09-29 18:27:16

标签: navigation react-native maps google-indoor-maps

我想在我的应用程序中实现楼层地图导航。请建议任何可用的库或实现它的方法。

尝试以下,但不允许添加自定义地图/楼层等。

<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>

1 个答案:

答案 0 :(得分:1)

您可以从Airbnb自定义类似react-native-maps的内容,对于实施部分,我们不会在此网站中按需提供代码,首先您必须向我们展示您尝试过的内容:)

希望它有所帮助!