0.0.1-rc.26 • Published 2 years ago

@olkit/core v0.0.1-rc.26

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@olkit/core

A ReactJS component library extending OpenLayers

Usage

Installing

You'll need to install @olkit/core and some of its peer dependencies:

With NPM:

npm i @olkit/core ol

Implementing

Making a map and adding data is easy, just a few lines of code:

import React from 'react'
import { MapProvider, Map, loadDataLayer } from '@olkit/core'

const App = () => {
    const onMapInit = async (map) => {
        const dataURL = 'https://data.nasa.gov/api/geospatial/7zbq-j77a?method=export&format=KML'
        const usStateLayer = await loadDataLayer(map, dataURL)
        usStateLayer.set('title', 'World Boundaries') // Just for fun
        map.addLayer(usStateLayer)
    }

    return (
        <MapProvider onMapInit={onMapInit}>
            <Map />
        </MapProvider>
    )
}

LICENSE

MIT License

Copyright (c) 2022 Divvitco

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0.0.1-rc.26

2 years ago

0.0.1-rc.25

2 years ago

0.0.1-rc.24

2 years ago

0.0.1-rc.23

2 years ago

0.0.1-rc.22

2 years ago

0.0.1-rc.21

2 years ago

0.0.1-rc.20

2 years ago

0.0.1-rc.19

2 years ago

0.0.1-rc.18

2 years ago

0.0.1-rc.17

2 years ago

0.0.1-rc.16

2 years ago

0.0.1-rc.15

2 years ago

0.0.1-rc.14

2 years ago

0.0.1-rc.13

2 years ago

0.0.1-rc.12

2 years ago

0.0.1-rc.11

2 years ago

0.0.1-rc.10

2 years ago

0.0.1-rc.9

2 years ago

0.0.1-rc.8

2 years ago

0.0.1-rc.7

2 years ago

0.0.1-rc.6

2 years ago

0.0.1-rc.5

2 years ago

0.0.1-rc.4

2 years ago

0.0.1-rc.3

2 years ago

0.0.1-rc.2

2 years ago

0.0.1-rc.1

2 years ago

0.0.1-rc.0

2 years ago