Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
@planet/maps
Advanced tools
Declarative mapping components
npm install @planet/maps
Import the components you need for your map. Provide an options
prop to pass to the underlying OpenLayers constructor. Provide other props for values that you want to update with state changes.
import Map from '@planet/maps/lib/Map';
import OSM from '@planet/maps/lib/source/OSM';
import ScaleLine from '@planet/maps/lib/control/ScaleLine';
import View from '@planet/maps/lib/View';
import WebGLTile from '@planet/maps/lib/layer/WebGLTile';
function MyApp() {
return (
<Map style={{width: '100%', height: '100%'}}>
<View options={{center: [0, 0], zoom: 1}} />
<WebGLTile>
<OSM />
</WebGLTile>
<ScaleLine />
</Map>
);
}
You can also listen to any events on the map, view, controls, interactions, layers, or sources; use ref
s to get access to the underlying OpenLayers instances; and more.
React lets you build interactive UIs with (mostly) declarative syntax. OpenLayers provides an imperative API for building mapping apps. It can be awkward to map React's component API to an imperative API. However, the React team provides a package for creating custom renderers: react-reconciler
. This is how they integrate with imperative APIs themselves. The react-dom
package uses react-reconciler
to provide a mapping to the imperative DOM API. react-native
uses react-reconciler
to map to imperative native APIs.
This library provides declarative mapping components representing imperative APIs from OpenLayers.
The purpose of this project is to provide a mapping between React's declarative components and OpenLayers' imperative API. In other words, this project provides a React renderer for OpenLayers.
Here are some of the goals of this project:
options
(passed to the constructor only), listener props (e.g. onChange
), and ref
.ref
that provide access to the underlying OpenLayers instance.This project does not intend to provide any of the following:
We hope that this package can provide the foundation for other, higher-level libraries with more opinions about the look and feel of mapping components.
The development setup depends on Node 18 (most things work on 16, but not all).
Install project dependencies:
npm install
The rendering tests use Playwright for visual snapshot comparison. See the tests/rendering/readme.md
for more detail.
Other projects like react-openlayers-fiber
and react-ol-fiber
use a similar approach and provided inspiration for this project. The major difference between this project and those is that this project provides importable components for OpenLayers layers, sources, controls, and interactions. The other projects bundle all of OpenLayers in their renderer. So a simple "hello world" map with one of the existing projects is about 1.5 MB while the same with this project is about 460 KB.
FAQs
Declarative mapping components for React
We found that @planet/maps demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.