Leaflet.Snap

Enables snapping of draggable markers to polylines and other layers

  • 所有者: makinacorpus/Leaflet.Snap
  • 平台:
  • 許可證: MIT License
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

Leaflet.Snap

Enables snapping of draggable markers to polylines and other layers ! Now updated to work with Leaflet.Draw for Leaflet 1.0!

Check out the demo !

It depends on Leaflet.GeometryUtil.

For snapping on shape drawing or edition snapping, it also depends on Leaflet.draw.

If your guide layer contains several thousands for features, adding the LayerIndex is recommended, this plugin takes advantage of the spatial index if it is available.

Install

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

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

Usage

  • Add leaflet.snap.js and leaflet.geometryutil.js (optionally leaflet.draw.js)

For markers :


    var guideLayer = ...;

    var marker = L.marker([48.488, 1.395]).addTo(map);
        marker.snapediting = new L.Handler.MarkerSnap(map, marker);
        marker.snapediting.addGuideLayer(guideLayer);
        marker.snapediting.enable();

For Leaflet.Draw :


    var guideLayers = [guides, road];

    map.drawControl.setDrawingOptions({
        polyline: { guideLayers: guideLayers },
        polygon: { guideLayers: guideLayers, snapDistance: 5 },
    });

For editing existing polyline :

    var polyline = L.polyline(...).addTo(map);
        polyline.snapediting = new L.Handler.PolylineSnap(map, polyline);
        polyline.snapediting.addGuideLayer(guideLayer);
        polyline.snapediting.enable();

Both L.Handler.MarkerSnap and L.Handler.PolylineSnap accept options as a third
argument.

For editing existing polyline with L.EditToolbar.SnapEdit :

L.EditToolbar.SnapEdit is an extension of L.EditToolbar.Edit in Leaflet.draw.

var polyline = L.polyline(...).addTo(map);
var editToolbar = new L.EditToolbar.SnapEdit(map, {
   featureGroup: L.featureGroup([polyline]),
   snapOptions: {
      guideLayers: [guideLayer]
   }
});

editToolbar.enable();

L.EditToolbar.SnapEdit accepts options and initial guide layers.

Options:

snapDistance : (default 15) distance in pixels where snapping occurs

snapVertices : (default true) whether layers vertices add additional snap attraction

Events :

snap ( layer, latlng ) : fired when snapped to layer at latlng

unsnap ( layer ) : fired when unsnapped from layer

Leaflet.Snap.Guidelines

L.Snap.Guidelines ia a class that works with Leaflet Draw to draw horizontal and vertical guidelines along all other existing rectangles and circles when in draw or edit mode, and allows the mouse to snap to those lines, to help the user to draw things that line up perfectly despite their being distance between them. Note that other shapes will always have snapping-prioirty over the guidelines.

Options:

guideStyle : The style of the guidelines, as a hash. By default, we have weight:1, color:black, opacity:0.1, and dashArray: 15, 10, 5.

Methods:

enabled : as expected.
enable : as expected.
disable : as expected.

Leaflet.Snap.Gridlines

    'pixelSpacingX' : 98,
    'pixelSpacingY' : 98
    });

L.Snap.Gridlines draws a grid on the map, and enables L.Snap to snap to its lines. Intersections of NS/WE gridlines will be preferred over sticking to a single line, but other shapes will always have snapping priority over the grid itself.

Options:

maxBounds : Specifies the NSWE bounds for the gridlines. If the maxBounds option is not set, the maxBounds on the map itself is used by default.

numGridlines -or- numGridlinesLat/numGridlinesLng -or- gridSpacingLat/gridSpacingLng -or- pixelSpacingX/pixelSpacingY : Only one of these options (or pairs of options) should be set. the "num" options specify the number of gridlines to fit in the maxBounds for each direction, calculating their spacing based on the total width/height, while the "spacing" options do the opposite, calculating the number based on the spacing. Spacing also allows one to specify its values in pixel or latlng coordinates.

gridStyle : The style of the gridlines themselves, as a hash. By default, we have weight:1, color:black, and opacity:0.1.

Methods:

enabled : as expected.
enable : as expected.
disable : as expected.
disableSnap : disable snap without changing the show/hide status of the grid.
disableSnap : re-enables snap without changing the show/hide status of the grid.
calcDimensions : redraws the grid with new dimensions; options are the same as the constructor.
show : shows the grid and disables snap on the grid.
hide : hides the grid and disables snap on the grid.

CHANGELOG

0.0.4

  • Fix to use leaflet-draw ^0.3.0
  • Delete git module and use node module instead
  • Can Snap for 'editing existing polyline with L.EditToolbar.SnapEdit'
  • Example can be use with http / https

0.0.3

  • Set the newly drawn point/vertex to the snapped location

0.0.2

  • Disable snapping when the feature is deleted

0.0.1

  • Fix Snaping if guide layer has Leaflet.LayerIndex

TODO

  • Add init hooks to simplify initialization

Authors

  • Mathieu Leplatre
  • Tobias Bieniek
  • Frédéric Bonifas

Makina Corpus

主要指標

概覽
名稱與所有者makinacorpus/Leaflet.Snap
主編程語言JavaScript
編程語言JavaScript (語言數: 2)
平台
許可證MIT License
所有者活动
創建於2013-05-03 09:22:49
推送於2024-01-15 15:29:57
最后一次提交2024-01-15 16:29:57
發布數3
最新版本名稱v0.0.5 (發布於 )
第一版名稱v0.0.3 (發布於 )
用户参与
星數197
關注者數42
派生數69
提交數108
已啟用問題?
問題數45
打開的問題數22
拉請求數19
打開的拉請求數1
關閉的拉請求數3
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?