Socket
Book a DemoInstallSign in
Socket

react-leaflet-draggable-polyline

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-leaflet-draggable-polyline

Draggable Polyline

1.0.3
latest
Source
npmnpm
Version published
Weekly downloads
4
Maintainers
1
Weekly downloads
 
Created
Source

Leaflet Draggable Polyline

A draggable polyline to use with react-leaflet. This may be useful if you need to edit a polyline provided by a driving directions api (such as google maps javascript api DirectionsService).

desktop demo mobile demo

Demo & Examples

Example with ordered new waypoints

Basic example with no ordering

Example using google maps directions

Installation

npm i -S react-leaflet-draggable-polyline

Usage

DraggablePolyline uses React context API. It needs to be nested inside a react-leaflet Map.

import DraggablePolyline from 'react-leaflet-draggable-polyline';

<DraggablePolyline
	positions={[[43.60, 1.44], [43.61, 1.30]]}
/>

For a fully working example, please check out this one.

Properties

This component extends all react-leaflet polyline properties.

NameTypeDefaultDescription
positionsarray[array[float]] or array[array[array[float]]]The polyline positions formatted as [lat, lng] arrays. If an array of positions is provided, every new waypoint will be reordered according to the positions array it has been dragged from
waypointsarray[array[float]][]The waypoints formatted as [lat, lng] arrays
onWaypointsChangefunction(waypoints, index)The callback that fires after every change in waypoints array. The index parameter represent the index of the changed waypoint.
onWaypointAddfunction(waypoint)The callback that fires after a waypoint has been added.
onWaypointRemovefunction(waypoint, index)The callback that fires after a waypoint has been removed. The index parameter represent the index of the removed waypoint.
onWaypointMovefunction(waypoint, index)The callback that fires after a waypoint has been moved. The index parameter represent the index of the moved waypoint.
mouseOverWaypointIconleaflet iconThe icon that shows on polyline mouseover
draggableWaypointIconleaflet iconThe draggable waypoints icon
weightnumber10The weight of the polyline. It needs to be large enough to enable touch events on a mobile device.

Development (src, lib and the build process)

To build the examples locally, run:

npm install
npm start

Then open localhost:8000 in a browser.

NOTE: The source code for the component is in src. A transpiled CommonJS version (generated with Babel) is available in lib for use with node.js, browserify and webpack. A UMD bundle is also built to dist, which can be included without the need for any build system.

To build, watch and serve the examples (which will also watch the component source), run npm start. If you just want to watch changes to src and rebuild lib, run npm run watch (this is useful if you are working with npm link).

License

MIT

Keywords

react

FAQs

Package last updated on 16 Sep 2017

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

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.