3

I want in implement floor map navigation in my application. Please , suggest any available Library or ways to implement it.

Tried following, but does not allow to add customize map/floor etc.

<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
  • 149
  • 1
  • 2
  • 8

2 Answers2

1

You can customize something like react-native-maps from Airbnb, for the implementation part, we don't provide code on-demand in this website, first you have to show us what you tried :)

Hope it helps!

Computer's Guy
  • 5,122
  • 8
  • 54
  • 74
  • 4
    I have tried this library, it provides support for maps, but adding custom maps or floor is not available. – AK2016 Sep 30 '16 at 21:50
0

I'm currently searching for the same solutions. You can try to search the keyword, "indoor navigation" or "indoor mapping". For now, there are some good libraries/SDKs that might support React-native (some may require you to implement natively):

Hope this helps!