react-native-apple-mapkit-directions
v1.2.1
Published
React Native wrapper for Apple MapKit Directions
Downloads
18
Maintainers
Readme
react-native-apple-mapkit-directions
React Native wrapper for Apple MapKit Directions. You can get distance, expectedTravelTime, name, advisoryNotices or coordinates. Work ONLY for IOS!
Installation
npm install react-native-apple-mapkit-directions
or
yarn add react-native-apple-mapkit-directions
then install pod
cd ios && pod install
Usage
import {
getAppleMapKitDirections,
MapKitTransit,
} from 'react-native-apple-mapkit-directions';
// ...
const origin = {
latitude: 55.751244,
longitude: 37.618423,
};
const destination = {
latitude: 59.9375,
longitude: 30.308611,
};
const transitType = MapKitTransit.AUTOMOBILE;
const points = await getAppleMapKitDirections(origin, destination, transitType);
You can use it with react-native-maps
import * as React from 'react';
import { StyleSheet } from 'react-native';
import MapView, { LatLng, Polyline } from 'react-native-maps';
import {
getAppleMapKitDirections,
MapKitTransit,
} from 'react-native-apple-mapkit-directions';
export default function App() {
const styles = StyleSheet.create({
map: {
...StyleSheet.absoluteFillObject,
},
});
const origin = {
latitude: 55.751244,
longitude: 37.618423,
};
const destination = {
latitude: 59.9375,
longitude: 30.308611,
};
const transitType = MapKitTransit.AUTOMOBILE;
const [state, setState] = React.useState<LatLng[]>();
React.useEffect(() => {
const getPoints = async () => {
if (Platform.OS === 'ios') {
try {
const points = await getAppleMapKitDirections(
origin,
destination,
transitType
);
setState(points.coordinates);
} catch (error) {
console.log('error', error);
}
}
};
getPoints();
}, []);
return (
<MapView style={styles.map}>
{state && <Polyline coordinates={state} />}
</MapView>
);
}
Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT
Made with create-react-native-library