{ "cells": [ { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from ipyleaflet import (\n", " Map,\n", " Marker,\n", " TileLayer, ImageOverlay,\n", " Polyline, Polygon, Rectangle, Circle, CircleMarker,\n", " GeoJSON,\n", " DrawControl\n", ")\n", "\n", "from traitlets import link" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "center = [34.6252978589571, -77.34580993652344]\n", "zoom = 10" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "m = Map(center=center, zoom=zoom)\n", "m" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "m.zoom" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now create the `DrawControl` and add it to the `Map` using `add_control`. We also register a handler for draw events. This will fire when a drawn path is created, edited or deleted (there are the actions). The `geo_json` argument is the serialized geometry of the drawn path, along with its embedded style." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dc = DrawControl(marker={'shapeOptions': {'color': '#0000FF'}},\n", " rectangle={'shapeOptions': {'color': '#0000FF'}},\n", " circle={'shapeOptions': {'color': '#0000FF'}},\n", " circlemarker={},\n", " )\n", "\n", "def handle_draw(target, action, geo_json):\n", " print(action)\n", " print(geo_json)\n", "\n", "dc.on_draw(handle_draw)\n", "m.add_control(dc)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In addition, the `DrawControl` also has `last_action` and `last_draw` attributes that are created dynamicaly anytime a new drawn path arrives." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dc.last_action" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dc.last_draw" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "It's possible to remove all drawings from the map" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dc.clear_circles()" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dc.clear_polylines()" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dc.clear_rectangles()" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dc.clear_markers()" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dc.clear_polygons()" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dc.clear()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's draw a second map and try to import this GeoJSON data into it." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "m2 = Map(center=center, zoom=zoom, layout=dict(width='600px', height='400px'))\n", "m2" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can use `link` to synchronize traitlets of the two maps:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "map_center_link = link((m, 'center'), (m2, 'center'))\n", "map_zoom_link = link((m, 'zoom'), (m2, 'zoom'))" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "new_poly = GeoJSON(data=dc.last_draw)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "m2.add_layer(new_poly)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Note that the style is preserved! If you wanted to change the style, you could edit the `properties.style` dictionary of the GeoJSON data. Or, you could even style the original path in the `DrawControl` by setting the `polygon` dictionary of that object. See the code for details." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now let's add a `DrawControl` to this second map. For fun we will disable lines and enable circles as well and change the style a bit." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dc2 = DrawControl(polygon={'shapeOptions': {'color': '#0000FF'}}, polyline={},\n", " circle={'shapeOptions': {'color': '#0000FF'}})\n", "m2.add_control(dc2)" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.2" } }, "nbformat": 4, "nbformat_minor": 1 }