This quickstart guide provides a zero-to-map intro using React Native. From there you can check out the examples folder if you want to jump in the deep end.
- On Android we support API 23 and higher
- You will need a vector tile source (such as Stadia Maps or MapTiler) for production use; a demonstration URL is used in the below example.
- node
- npm
- React Native (0.60+)
If you don't have an existing React Native project, create one:
npx react-native init MyApp
From your React Native project's root directory, add the package via
either yarn
or npm
(pick one).
# install with Yarn
yarn add @maplibre/maplibre-react-native
# install with NPM
npm install @maplibre/maplibre-react-native --save
Check out the installation guide(s) for additional information about platform-specific setup, quirks, and steps required before running.
Here is an example minimal App.tsx
:
import React from "react";
import MapLibreGL from "@maplibre/maplibre-react-native";
// Will be null for most users (only Mapbox authenticates this way).
// Required on Android. See Android installation notes.
MapLibreGL.setAccessToken(null);
export default function App() {
return <MapLibreGL.MapView style={{ flex: 1 }} />;
}
# Run with yarn
yarn run ios
# or Run with NPM
npm run ios
# Run with yarn
yarn run android
# or Run with NPM
npm run android