Skip to content

Gowalla/mapkit-react

 
 

Repository files navigation

mapkit-react

Use Apple Maps in your React apps!

Demo

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).

Usage

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).

Features

A complete list of MapKit JS features supported by this library is available on the Supported MapKit JS features page.

Contributing

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.

Contributors

Thanks goes to these wonderful people (emoji key):

Nicolas Ettlin
Nicolas Ettlin

💻 📖 💡 👀
Derek Reynolds
Derek Reynolds

💻 📖 💡

This project follows the all-contributors specification. Contributions of any kind welcome!

License

mapkit-react is released under the MIT license, see the LICENSE file for details.

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 98.4%
  • CSS 1.2%
  • JavaScript 0.4%