An open API service indexing awesome lists of open source software.

https://github.com/tcallsen/react-func-openlayers

A sample application that demonstrates how to integrate OpenLayers with React Functional Components.
https://github.com/tcallsen/react-func-openlayers

gis openlayers react

Last synced: 3 months ago
JSON representation

A sample application that demonstrates how to integrate OpenLayers with React Functional Components.

Awesome Lists containing this project

README

          

# Using OpenLayers with React Functional Components and Hooks

Here is a sample application that demonstrates how to integrate OpenLayers with React Functional Components including:

* creating a wrapper component ([MapWrapper.js](./src/components/MapWrapper.js))
* using hooks to initialize the map and add features from props
* get/set component state from within an OpenLayers event handler using refs
* Fetch and parse GeoJSON features from a mock API (done inside [App.js](./src/App.js))

![An example application featuring OpenLayers and React Functional Components](https://taylor.callsen.me/wp-content/uploads/2020/09/tcallsen-react-function-openlayers-example-sept-2020.jpg "An example application featuring OpenLayers and React Functional Components")

## Install

Install the dependencies with the following command:

```
nvm use
npm install
```

## Launch with Development Server

To run a development build and launch the development server, execute:

`npm start`

Once completed, the app should be avialable from http://localhost:3000/

## Development Environment

This application was developed using create-react-app, with Node version `v22.11.0`

## Supplemental Blog Post

Here is a blog post I created that explains the integration in further detail: [https://taylor.callsen.me/using-openlayers-with-react-functional-components/](https://taylor.callsen.me/using-openlayers-with-react-functional-components/)