npm.io
2.0.4 • Published 3 years ago

react-leaflet-geodesic3

Licence
GPL-3.0
Version
2.0.4
Deps
2
Size
197 kB
Vulns
0
Weekly
0
Stars
4

react-leaflet-geodesic npm version

Draws geodesic curves on React-Leaflet, which are the real minimal "line" between two coordinates of the Earth.

This is a part-wrap of Leaflet.Geodesic, made by henrythasler. There are some code still needed to get all functionalities from his lib, feel free to add it.

Example

Usage

import { GeodesicLine } from 'react-leaflet-geodesic'
...
const waypoints = [
  [-33, -70],
  [-33, 151],
]

const options = {
  weight: 20,
  opacity: 0.5,
  color: 'red',
}
...
<GeodesicLine positions={waypoints} options={options} />
...

For more details on how to use this plugin check the example.

Keywords