Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

leaflet-forbiddenarea

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

leaflet-forbiddenarea

Prohibit the placement of markers if they are too close to another layer

  • 0.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
increased by300%
Maintainers
1
Weekly downloads
 
Created
Source

Leaflet.ForbiddenArea.js

Add new marker type (ForbiddenArea) to leaflet.Draw Toolbar.

Prohibit the placement of its markers if they are too close to another layer.

Check out the demo !

It depends on Leaflet.GeometryUtil.

For creation and edition, it also depends on Leaflet.draw.

Install

In order to use this plugin in your app you can either:

  • install it via your favorite package manager:
    • bower install git@github.com:makinacorpus/Leaflet.ForbiddenArea.git
  • download the repository and import the leaflet.forbiddenarea.js file in your app.

Usage

  • Add leaflet.forbiddenarea.js and leaflet.geometryutil.js and leaflet.draw.js

For markers :


        var editableMarkers = new L.FeatureGroup();

        var osm = L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
            attribution: 'Map data © 2013 OpenStreetMap contributors',
        });

        var map = L.map('map')
            .setView([48.49, 1.4], 16)
            .addLayer(osm);

        var marker = L.marker([48.488, 1.395]).addTo(map);
        var groupMarkers = [marker];
        editableMarkers.addLayer(marker);
        map.addLayer(editableMarkers);

        var options = {
            position: 'topright',
            draw: {
                polyline: false,
                polygon: false,
                circle: false,
                rectangle: false,
                marker: true,
                forbiddenAreaMarker: {
                    guideLayers: groupMarkers,
                    distanceForbiddenArea: 300,
                    msgForbidden: 'Other marker are too close !'
                },
            },
            edit: {
                featureGroup: editableMarkers,
                remove: false
            }
        };

        var drawControl = new L.Control.Draw(options);
        map.addControl(drawControl);

        map.on('draw:created', function(e) {
            var layer = e.layer;
            map.addLayer(layer);
            groupMarkers.push(layer);
            editableMarkers.addLayer(layer);
        });

0.0.1

  • prohibit the placement of a marker if it is too close to another.ex

TODO

  • Change marker color when it's in forbidden area (Creation and Edition)
  • Keep default icon marker for forbidden marker type, but can be cool if we can choose an other if we want
  • Show forbidden zone around layer Authors

  • Bastien Alvez

Makina Corpus

Keywords

FAQs

Package last updated on 26 Sep 2016

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

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc