# react-three-map **Repository Path**: mirrors-gis/react-three-map ## Basic Information - **Project Name**: react-three-map - **Description**: mapboxgl R3F - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-07-04 - **Last Updated**: 2024-07-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ![logo](public/favicon.svg)React Three Map [![Repository](https://img.shields.io/static/v1?&message=github&style=flat&colorA=000000&colorB=000000&label=&logo=github&logoColor=ffffff)](https://github.com/RodrigoHamuy/react-three-map) [![Version](https://img.shields.io/npm/v/react-three-map?style=flat&colorA=000000&colorB=000000)](https://npmjs.com/package/react-three-map) [![Build Size](https://img.shields.io/bundlephobia/minzip/react-three-map?label=size&?style=flat&colorA=000000&colorB=000000)](https://bundlephobia.com/result?p=react-three-map) [![Build Status](https://img.shields.io/github/actions/workflow/status/RodrigoHamuy/react-three-map/release.yml?branch=main&style=flat&colorA=000000)](https://github.com/RodrigoHamuy/react-three-map/actions?query=workflow%3Arelease) [![Examples](https://img.shields.io/badge/stories-stories?colorA=000&colorB=000000&label=📍)](https://rodrigohamuy.github.io/react-three-map/?story=canvas--a-maplibre-example) [![Sponsor me](https://img.shields.io/github/sponsors/RodrigoHamuy?style=flat&colorA=000000&colorB=000000&label=💛%20sponsor)](https://github.com/sponsors/RodrigoHamuy?frequency=one-time&sponsor=RodrigoHamuy) `react-three-map` is a bridge to use [`react-three-fiber`](https://github.com/pmndrs/react-three-fiber) inside [`react-map-gl`](https://github.com/visgl/react-map-gl). Until now you had: | imperative | declarative (react) | | --------------- | ------------------- | | Maplibre/Mapbox | react-map-gl | | THREE.js | react-three-fiber | Now with `react-three-map`, you can use them together :fist_right::star::fist_left:. ```sh npm install react-three-map ``` - [React Three Map](#react-three-map) - [:book: Examples](#book-examples) - [:mag: What does it look like?](#mag-what-does-it-look-like) - [:thinking: Why we build this?](#thinking-why-we-build-this) - [:gear: API](#gear-api) - [Canvas](#canvas) - [Render Props](#render-props) - [Render Props removed from `@react-three/fiber`](#render-props-removed-from-react-threefiber) - [Coordinates](#coordinates) - [NearCoordinates](#nearcoordinates) - [useMap](#usemap) - [coordsToVector3](#coordstovector3) - [vector3ToCoords](#vector3tocoords) - [:tada: Made with `react-three-map`](#tada-made-with-react-three-map) ## :book: Examples Check out our examples [here](https://rodrigohamuy.github.io/react-three-map) (powered by [Ladle](https://ladle.dev/)). ## :mag: What does it look like?
Let's build the same react-three-fiber basic example, but now it can be inside a map. (live demo).
1. Import `Canvas` from `react-three-map` instead of `@react-three/fiber`. 2. Give it a latitude and longitude so it knows where to position the scene in the map. 3. Everything else should work just as usual. ```jsx import "maplibre-gl/dist/maplibre-gl.css" import { createRoot } from 'react-dom/client' import React, { useRef, useState } from 'react' import { useFrame } from "@react-three/fiber" import { useRef, useState } from "react" import Map from "react-map-gl/maplibre" import { Canvas } from "react-three-map/maplibre" // import { Canvas } from "react-three-map" // if you are using MapBox function BasicExample() { return } ``` ## :thinking: Why we build this? Look [how complex](https://maplibre.org/maplibre-gl-js-docs/example/add-3d-model/) is to add just one ThreeJS object to a map. Look [how complex](https://docs.pmnd.rs/react-three-fiber/api/canvas#createroot) is to create your custom root for R3F. You can now replace all that complexity and hundreds of lines of code with the `` component exported by `react-three-map`, which includes a tone of extra features and seamless integration, supporting pointer events, raycasting, and much more, all out of the box. ## :gear: API ### Canvas Same as in `@react-three/fiber`, the `` object is where you start to define your React Three Fiber Scene. ```tsx import "maplibre-gl/dist/maplibre-gl.css" import Map from "react-map-gl/maplibre" import { Canvas } from 'react-three-map/maplibre' // import { Canvas } from "react-three-map" // if you are using MapBox const App = () => ( ) ``` It shares most of the props from R3F ``, so you can check them directly in the [`@react-three/fiber` docs](https://docs.pmnd.rs/react-three-fiber/api/canvas). There are a few important exceptions though, which are mentioned bellow. #### Render Props | Prop | Description | Default | | --------- | ------------------------------------------------ | ---------- | | latitude | The latitude coordinate where to add the scene. | | | longitude | The longitude coordinate where to add the scene. | | | altitude | The altitude coordinate where to add the scene. | `0` | | frameloop | Render mode: `"always"`, `"demand"`. | `"always"` | | overlay | Render on a separated canvas. | `false` | **About `overlay`** You may want to use `overlay` if: - You use `react-postprocessing` and have issues clearing the screen. - Want to avoid unnecesary map renders when only the Three scene changed. But it comes with some caveats: - ThreeJS will always render on top, as this is now a separated canvas and doesn't have access to the map depth buffer. - `react-postprocessing` will also not work if you also use `` components. #### Render Props removed from `@react-three/fiber` Because the scene now lives in a map, we leave a lot of the render and camera control to the map, rather than to R3F. Therefore, the following `` props are ignored: - gl - camera - resize - orthographic - dpr ### Coordinates [![Coordinates example](docs/coordinates.png)](https://rodrigohamuy.github.io/react-three-map/?story=multi-coordinates--default) This component allows you to have 3D objects at different coordinates. ```tsx import { Canvas, Coordinates } from 'react-three-map' ``` | Props | Description | Default | | --------- | ------------------------------------------------ | ------- | | latitude | The latitude coordinate where to add the scene. | | | longitude | The longitude coordinate where to add the scene. | | | altitude | The altitude coordinate where to add the scene. | `0` | ### NearCoordinates [![](https://img.shields.io/badge/-demo-%23ff69b4)](https://rodrigohamuy.github.io/react-three-map/?story=multi-coordinates--default) Same as `Coordinates`, but scale is ignored in exchange of being able to be rendered under the same scene. Works well at city level distances, but since scale remains unchanged, is not recommended at country level distances. Check the story to see the difference between the two or check #102 for more info. ### useMap Access the map from inside `react-three-map`. ```tsx import { useMap } from "react-three-map"; // import { useMap } from "react-three-map/maplibre"; if you use maplibre const Component = () => { const map = useMap(); return <>... } ``` ### coordsToVector3 [![](https://img.shields.io/badge/-demo-%23ff69b4)](https://rodrigohamuy.github.io/react-three-map/?story=extrude-coordinates--extrude-coordinates) This utility function converts geographic coordinates into a `Vector3Tuple`, which represents a 3D vector in meters. Similar to `NearCoordinates`, remember that this only updates positions (translation) but that scale is not taken into account, which has an important factor at very long distances (country level). | Parameter | Description | | ---------------- | --------------------------------------------------------------- | | `point: Coords` | The geographic coordinates of the point to convert. | | `origin: Coords` | The geographic coordinates used as the origin for calculations. | Returns a `Vector3Tuple` representing the 3D position of the point relative to the origin. ### vector3ToCoords [![](https://img.shields.io/badge/-demo-%23ff69b4)](https://rodrigohamuy.github.io/react-three-map/?story=pivot-controls--default) This utility function converts a `Vector3Tuple`, which represents a 3D vector in meters, back into geographic coordinates. It is the inverse of `coordsToVector3` but it does not have a good level of precision at long distances since we haven't reverse engineered #102 fix yet. Recommended to use at city level distances, but margin errors will be noticeable at country level distances. | Parameter | Description | | ------------------------ | --------------------------------------------------------------- | | `position: Vector3Tuple` | The 3D vector to convert back into geographic coordinates. | | `origin: Coords` | The geographic coordinates used as the origin for calculations. | Returns a `Coords` object representing the geographic coordinates of the point relative to the origin. ## :tada: Made with `react-three-map` [![studio carto](./made-with/studio-carto-urban-project.webp)](https://x.com/lonjon_thomas/status/1767151007983685979?s=20) [![post](https://img.shields.io/badge/post-black?style=for-the-badge&logo=x)](https://x.com/lonjon_thomas/status/1767151007983685979?s=20) [![page](https://img.shields.io/badge/page-black?style=for-the-badge)](https://studio-carto-urban-project.netlify.app/)