├── .gitignore ├── README.md ├── assets ├── Navigation (react-native-maps-navigation).json └── fonts │ └── Navigation.ttf ├── docs ├── CloseButton.md ├── DirectionInputBox.md ├── DirectionsListView.md ├── DurationDistanceLabel.md ├── DurationDistanceView.md ├── ManeuverArrow.md ├── ManeuverLabel.md ├── ManeuverView.md ├── MapViewNavigation.md ├── PositionMarker.md ├── RouteMarker.md ├── RouterPolyline.md ├── TravelModeBox.md └── preview.gif ├── index.js ├── package.json └── src ├── components ├── CloseButton │ ├── index.js │ └── styles.js ├── DirectionsListView │ ├── index.js │ ├── item.js │ └── styles.js ├── DurationDistanceLabel │ ├── index.js │ └── styles.js ├── DurationDistanceView │ ├── index.js │ └── styles.js ├── ManeuverArrow │ ├── index.js │ └── styles.js ├── ManeuverLabel │ ├── index.js │ └── styles.js ├── ManeuverView │ ├── index.js │ └── styles.js ├── MapViewNavigation │ └── index.js ├── PositionMarker │ ├── index.js │ └── styles.js ├── RouteMarker │ ├── index.js │ └── styles.js ├── RoutePolyline │ └── index.js ├── TravelModeBox │ └── index.js └── TravelModeLabel │ ├── index.js │ └── styles.js ├── constants ├── DirectionTypes.js ├── MarkerTypes.js ├── NavigationIcons.js ├── NavigationModes.js ├── PolylineTypes.js ├── PropTypes.js ├── TrapTypes.js └── TravelModes.js ├── modules ├── Directions.js ├── Geocoder.js ├── Simulator.js ├── Tools.js └── Traps.js └── themes └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/README.md -------------------------------------------------------------------------------- /assets/Navigation (react-native-maps-navigation).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/assets/Navigation (react-native-maps-navigation).json -------------------------------------------------------------------------------- /assets/fonts/Navigation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/assets/fonts/Navigation.ttf -------------------------------------------------------------------------------- /docs/CloseButton.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/DirectionInputBox.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/DirectionsListView.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/DurationDistanceLabel.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/DurationDistanceView.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/ManeuverArrow.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/ManeuverLabel.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/ManeuverView.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/MapViewNavigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/docs/MapViewNavigation.md -------------------------------------------------------------------------------- /docs/PositionMarker.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/RouteMarker.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/RouterPolyline.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/TravelModeBox.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/docs/preview.gif -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/package.json -------------------------------------------------------------------------------- /src/components/CloseButton/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/CloseButton/index.js -------------------------------------------------------------------------------- /src/components/CloseButton/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/CloseButton/styles.js -------------------------------------------------------------------------------- /src/components/DirectionsListView/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/DirectionsListView/index.js -------------------------------------------------------------------------------- /src/components/DirectionsListView/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/DirectionsListView/item.js -------------------------------------------------------------------------------- /src/components/DirectionsListView/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/DirectionsListView/styles.js -------------------------------------------------------------------------------- /src/components/DurationDistanceLabel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/DurationDistanceLabel/index.js -------------------------------------------------------------------------------- /src/components/DurationDistanceLabel/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/DurationDistanceLabel/styles.js -------------------------------------------------------------------------------- /src/components/DurationDistanceView/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/DurationDistanceView/index.js -------------------------------------------------------------------------------- /src/components/DurationDistanceView/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/DurationDistanceView/styles.js -------------------------------------------------------------------------------- /src/components/ManeuverArrow/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/ManeuverArrow/index.js -------------------------------------------------------------------------------- /src/components/ManeuverArrow/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/ManeuverArrow/styles.js -------------------------------------------------------------------------------- /src/components/ManeuverLabel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/ManeuverLabel/index.js -------------------------------------------------------------------------------- /src/components/ManeuverLabel/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/ManeuverLabel/styles.js -------------------------------------------------------------------------------- /src/components/ManeuverView/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/ManeuverView/index.js -------------------------------------------------------------------------------- /src/components/ManeuverView/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/ManeuverView/styles.js -------------------------------------------------------------------------------- /src/components/MapViewNavigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/MapViewNavigation/index.js -------------------------------------------------------------------------------- /src/components/PositionMarker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/PositionMarker/index.js -------------------------------------------------------------------------------- /src/components/PositionMarker/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/PositionMarker/styles.js -------------------------------------------------------------------------------- /src/components/RouteMarker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/RouteMarker/index.js -------------------------------------------------------------------------------- /src/components/RouteMarker/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/RouteMarker/styles.js -------------------------------------------------------------------------------- /src/components/RoutePolyline/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/RoutePolyline/index.js -------------------------------------------------------------------------------- /src/components/TravelModeBox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/TravelModeBox/index.js -------------------------------------------------------------------------------- /src/components/TravelModeLabel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/TravelModeLabel/index.js -------------------------------------------------------------------------------- /src/components/TravelModeLabel/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/components/TravelModeLabel/styles.js -------------------------------------------------------------------------------- /src/constants/DirectionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/constants/DirectionTypes.js -------------------------------------------------------------------------------- /src/constants/MarkerTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/constants/MarkerTypes.js -------------------------------------------------------------------------------- /src/constants/NavigationIcons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/constants/NavigationIcons.js -------------------------------------------------------------------------------- /src/constants/NavigationModes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/constants/NavigationModes.js -------------------------------------------------------------------------------- /src/constants/PolylineTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/constants/PolylineTypes.js -------------------------------------------------------------------------------- /src/constants/PropTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/constants/PropTypes.js -------------------------------------------------------------------------------- /src/constants/TrapTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/constants/TrapTypes.js -------------------------------------------------------------------------------- /src/constants/TravelModes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/constants/TravelModes.js -------------------------------------------------------------------------------- /src/modules/Directions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/modules/Directions.js -------------------------------------------------------------------------------- /src/modules/Geocoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/modules/Geocoder.js -------------------------------------------------------------------------------- /src/modules/Simulator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/modules/Simulator.js -------------------------------------------------------------------------------- /src/modules/Tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/modules/Tools.js -------------------------------------------------------------------------------- /src/modules/Traps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/modules/Traps.js -------------------------------------------------------------------------------- /src/themes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyandi/react-native-maps-navigation/HEAD/src/themes/index.js --------------------------------------------------------------------------------