
Security News
Microsoft Releases Open Source Toolkit for AI Agent Runtime Security
Microsoft has released an open source toolkit for enforcing runtime security policies on AI agents as adoption accelerates faster than governance controls.
@collmot/ol-react
Advanced tools
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
React interface for OpenLayers, forked from ol-react
We found that @collmot/ol-react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Microsoft has released an open source toolkit for enforcing runtime security policies on AI agents as adoption accelerates faster than governance controls.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.