New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@collmot/ol-react

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@collmot/ol-react

React interface for OpenLayers, forked from ol-react

latest
npmnpm
Version
0.2.1
Version published
Maintainers
1
Created
Source

A thin wrapper for OpenLayers 4 in React.

The goal is to be able to write applications using OpenLayers maps in a declarative way. For example, the following is JSX, which can be returned by the render() method on a React component, to generate a map with a red square near the equator.

<Map view=<View resolution={10000} center={[0, 0]}/>>
  <layer.Tile>
    <source.OSM />
  </layer.Tile>
  <layer.Vector>
    <source.Vector>
      <Feature style={{stroke: {color: [255, 0, 0, 1]}}}>
        <geom.LineString coordinates={[[0, 0], [100000, 0], [100000, 100000], [0, 100000]]} />
      </Feature>
    </source.Vector>
  </layer.Vector>
</Map>

To understand what each element does, read the OpenLayers API documentation.

This version is forked from ol-react, originally written by Richard Hills. Our version adds support for the new React context API, gets rid of class inheritances and includes several other OpenLayers components that the original version did not contain. Since the fork has diverged too much from upstream, we have renamed it to @collmot/ol-react.

We are very grateful to Richard Hills for publishing the first version of ol-react on which this version is built.

FAQs

Package last updated on 10 Sep 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts