🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

one-way-openlayers

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

one-way-openlayers

One way dataflow wrapper for OpenLayers maps

latest
Source
npmnpm
Version
0.5.0
Version published
Maintainers
1
Created
Source

One Way OpenLayers

One Way OpenLayers is a JavaScript library for rendering maps with a one way data flow and OpenLayers.

  • Declarative: One Way OpenLayers makes it easy to create interactive maps. Declare the state of the map as a JavaScript object and One Way OpenLayers will efficiently update and render just the right components when your data changes.
  • Unidirectional data flow: One Way OpenLayers evolves the "Data down, actions up" ideas of React. Declarative updates make your code more predictable, simpler to understand, and easier to debug.
  • API: The data structure maps, as close as possible, to the OpenLayers API.

Examples

More examples in the examples folder. Here is the first one to get you started:

import OneWayOpenLayers from 'one-way-openlayers'

const map = OneWayOpenLayers({
  target: document.body
})

map.render({
  view: {
    center: [0, 0],
    zoom: 1
  },
  layers: [
    {
      type: 'Tile',
      visible: true,
      source: {
        type: 'XYZ',
        url: 'https://{a-c}.tile.openstreetmap.org/{z}/{x}/{y}.png'
      }
    }
  ],
  events: {
    click: (e) => console.log(e.coordinate)
  }
})

This example will render a map with one tiled layer into a the body element and attach a click event to the ol.Map object.

Installation

npm install one-way-openlayers --save

Development

Setup

  • git clone https://github.com/itjope/one-way-openlayers.git
  • npm install

Run examples

  • npm start

Run tests

  • npm test

Type checking with Flow

  • npm run flow

Keywords

map

FAQs

Package last updated on 16 Oct 2019

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