# react-map-gl

> React components for MapLibre GL JS and Mapbox GL JS

Latest version **8.1.3** (published 2026-09-02) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-map-gl
pnpm add react-map-gl
yarn add react-map-gl
bun add react-map-gl
```

## Health

**Score 68/100 (B)** — status: active.

Positive: has types package; esm support; no vulnerabilities; has provenance; recently updated; high maintenance score.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 8.1.3 |
| Published | 2026-09-02 |
| First published | 2015-10-08 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | separate (@types/react-map-gl) |
| Module format | ESM |
| Dependencies | 2 |
| Unpacked size | 469.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 8497 |
| Maintainers | pessimistress, ibgreen, chrisgervang, felixpalmer, usefulthink, donmccurdy |
| Keywords | mapbox, maplibre, mapbox-gl, maplibre-gl, react |

## Links

- npm: https://www.npmjs.com/package/react-map-gl
- Repository: https://github.com/visgl/react-map-gl
- Homepage: https://github.com/visgl/react-map-gl#readme
- Issues: https://github.com/visgl/react-map-gl/issues
- npm.io page: https://npm.io/package/react-map-gl

## Dependencies (2)

- [@vis.gl/react-mapbox](https://npm.io/package/@vis.gl/react-mapbox.md) 8.1.3
- [@vis.gl/react-maplibre](https://npm.io/package/@vis.gl/react-maplibre.md) 8.1.3

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 8.1.3 (latest) — 2026-09-02
- 8.1.0-alpha.2 (beta) — 2025-04-09
- 6.1.21 (alt-latest) — 2022-12-20
- 2.0.4 (2.0-release) — 2017-08-29
- 1.8.4 (1.0-release) — 2017-08-01
- 8.1.2 — 2026-07-29
- 8.1.1 — 2026-04-11
- 8.1.0 — 2025-10-03
- 8.0.4 — 2025-04-16
- 8.0.3 — 2025-04-09
- 8.1.0-alpha.1 — 2025-03-28
- 8.0.2 — 2025-03-28
- 8.0.1 — 2025-02-07
- 8.0.0 — 2025-02-03
- 8.0.0-beta.1 — 2025-01-31
- … 287 more at https://npm.io/package/react-map-gl/versions

## README

<p align="right">
  <a href="https://npmjs.org/package/react-map-gl">
    <img src="https://img.shields.io/npm/v/react-map-gl.svg?style=flat-square" alt="version" />
  </a>
  <a href="https://github.com/visgl/react-map-gl/actions?query=workflow%3Atest+branch%3Amaster">
    <img src="https://github.com/visgl/react-map-gl/workflows/test/badge.svg?branch=master" alt="build" />
  <a href="https://npmjs.org/package/react-map-gl">
    <img src="https://img.shields.io/npm/dm/react-map-gl.svg?style=flat-square" alt="downloads" />
  </a>
</p>

<h1 align="center">react-map-gl | <a href="https://visgl.github.io/react-map-gl">Docs</a></h1>

`react-map-gl` is a suite of [React](https://react.dev/) components designed to provide a React API for [mapbox-gl](https://github.com/mapbox/mapbox-gl-js) or [maplibre-gl](https://maplibre.org/maplibre-gl-js/docs/). More information in the online documentation.

See our [Design Philosophy](docs/README.md#design-philosophy).

### Installation

Using `react-map-gl` requires `react >= 16.3`.

```sh
# Using Maplibre
npm install react-map-gl maplibre-gl
```
_or_

```sh
# Using Mapbox
npm install react-map-gl mapbox-gl
```

### Example

```js
// Using Maplibre
import * as React from 'react';
import Map from 'react-map-gl/maplibre';
import 'maplibre-gl/dist/maplibre-gl.css';

function App() {
  return (
    <Map
      initialViewState={{
        longitude: -122.4,
        latitude: 37.8,
        zoom: 14
      }}
      style={{width: 600, height: 400}}
      mapStyle="https://api.maptiler.com/maps/streets/style.json?key=<Maptiler access token>"
    />
  );
}
```
_or_

```js
// Using Mapbox
import * as React from 'react';
import Map from 'react-map-gl/mapbox';
import 'mapbox-gl/dist/mapbox-gl.css';

function App() {
  return (
    <Map
      // https://visgl.github.io/react-map-gl/docs/get-started/mapbox-tokens
      mapboxAccessToken="<Mapbox access token>"
      initialViewState={{
        longitude: -100,
        latitude: 40,
        zoom: 3.5
      }}
      style={{width: 600, height: 400}}
      mapStyle="mapbox://styles/mapbox/streets-v9"
    />
  );
}
```

Learn more with in our [Getting Started](https://visgl.github.io/react-map-gl/docs/get-started) guide.


### Contribute

See [contribution guide](/CONTRIBUTING.md).


### Attributions

react-map-gl is part of vis.gl, an [OpenJS Foundation](https://openjsf.org) project.

Development is also supported by

<img src="https://raw.githubusercontent.com/visgl/deck.gl-data/master/images/branding/mapbox.svg" height="40" />

---
_Source: https://npm.io/package/react-map-gl · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
