Socket
Socket
Sign inDemoInstall

leaflet-measure-path

Package Overview
Dependencies
0
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    leaflet-measure-path

Show measurements on Leaflet paths


Version published
Weekly downloads
2.9K
decreased by-1.44%
Maintainers
1
Install size
32.4 kB
Created
Weekly downloads
 

Readme

Source

Leaflet Measure Path

Leaflet 1.0 compatible!

A plugin to show measurements on paths (polylines, polygons and circles currently supported).

Leaflet Measure Path demo

Usage

Load leaflet-measure-path.js and leaflet-measure-path.css. Then, to enable measurements on a path:

var polygon = L.polygon([ ... ])
    .addTo(map)
    .showMeasurements();

To later hide measurements:

var polygon = L.polygon([ ... ])
    .addTo(map)
    .hideMeasurements();

API

The simplest way to enable measurements for a path is to pass the option showMeasurements: true when creating the path. To control the measurement options, you can also pass measurementOptions, see options below.

The plugin also adds the methods listed below to Leaflet's L.Polyline, L.Polygon and L.Circle classes.

showMeasurements(options)

Enables measurements. You can also overide the defaults by passing an options object.

Options
  • showOnHover: Boolean (default false): if true, the measurements will only show when the user hovers the cursor over the path
  • showTotalDistance: Boolean (default true): if false, the total length of polyline will not be shown
  • minDistance: Number (default 30): the minimum length a line segment in the feature must have for a measurement to be added
  • formatDistance: Function: allows to override the built-in function that formats a distance in meters to the string shown in the map
  • formatArea: Function: allows to override the built-in function that formats an area in square meters to the string shown in the map

hideMeasurements()

Disables measurements.

updateMeasurements()

Updates the measurements displayed. Normally, this method is called automatically if the path's geometry is changed using setLatLngs, spliceLatLngs or when the map is zoomed. If the geometry is somehow changed by other means, this method can be called to force the measurements to update.

Keywords

FAQs

Last updated on 16 Aug 2020

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc