Skip to content

Latest commit

 

History

History
73 lines (60 loc) · 1.54 KB

geoman_draw_control.rst

File metadata and controls

73 lines (60 loc) · 1.54 KB

Geoman Draw Control

GeomanDrawControl allows one to draw various shapes on the map. The drawing functionality opn the front-end is provided by geoman.

The following shapes are supported: - marker - circleMarker - circle - polyline - rectangle - polygon - text

Additionally, there are modes that allow editing of previously drawn shapes:

  • edit
  • drag
  • remove
  • cut
  • rotate

To have a drawing tool active on the map, pass it a non-empty dictionary with the desired options, see geoman documentation for details.

Example

.. jupyter-execute::

    from ipyleaflet import Map, GeomanDrawControl

    m = Map(center=(50, 354), zoom=5)

    draw_control = GeomanDrawControl()
    draw_control.polyline =  {
        "pathOptions": {
            "color": "#6bc2e5",
            "weight": 8,
            "opacity": 1.0
        }
    }
    draw_control.polygon = {
        "pathOptions": {
            "fillColor": "#6be5c3",
            "color": "#6be5c3",
            "fillOpacity": 1.0
        }
    }
    draw_control.circlemarker = {
        "pathOptions": {
            "fillColor": "#efed69",
            "color": "#efed69",
            "fillOpacity": 0.62
        }
    }
    draw_control.rectangle = {
        "pathOptions": {
            "fillColor": "#fca45d",
            "color": "#fca45d",
            "fillOpacity": 1.0
        }
    }

    m.add(draw_control)

    m

Methods

.. autoclass:: ipyleaflet.leaflet.GeomanDrawControl
   :members: