Use Apple Maps in your React apps!
You can see the library in action on the Storybook examples.
You can run the examples locally by cloning the project and running the following command:
STORYBOOK_MAPKIT_JS_TOKEN="β¦" npm run storybook
Replace β¦
by your MapKit JS token (you can learn how to generate one on the MapKit JS documentation).
First, add the library to your project like this:
npm install mapkit-react
You can then use the library in your project like this:
import React from 'react';
import { Map, Marker } from 'mapkit-react';
function MyComponent() {
return (
<Map token="β¦">
<Marker latitude={46.52} longitude={6.57} />
</Map>
);
}
You can see all the supported parameters in Storybook (see above).
A complete list of MapKit JS features supported by this library is available on the Supported MapKit JS features page.
If you have a question or an idea, you can create an issue. Pull requests are welcome! If you want to contribute, donβt hesitate to look into the unassigned issues.
Thanks goes to these wonderful people (emoji key):
Nicolas Ettlin π» π π‘ π |
Derek Reynolds π» π π‘ |
This project follows the all-contributors specification. Contributions of any kind welcome!
mapkit-react is released under the MIT license, see the LICENSE file for details.