![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
react-native-apple-mapkit-directions
Advanced tools
React Native wrapper for Apple MapKit Directions
React Native wrapper for Apple MapKit Directions. You can get distance, expectedTravelTime, name, advisoryNotices or coordinates. Work ONLY for IOS!
npm install react-native-apple-mapkit-directions
or
yarn add react-native-apple-mapkit-directions
then install pod
cd ios && pod install
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>
);
}
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library
FAQs
React Native wrapper for Apple MapKit Directions
The npm package react-native-apple-mapkit-directions receives a total of 2 weekly downloads. As such, react-native-apple-mapkit-directions popularity was classified as not popular.
We found that react-native-apple-mapkit-directions demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.