{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
Make this Notebook Trusted to load map: File -> Trust Notebook
" ], "text/plain": [ "" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import folium\n", "from folium.plugins import MeasureControl\n", "\n", "\n", "m = folium.Map([-27.5717, -48.6256], zoom_start=10)\n", "\n", "m.add_child(MeasureControl())\n", "\n", "m" ] } ], "metadata": { "_draft": { "nbviewer_url": "https://gist.github.com/e7f6b078c47babcbc944e4486267d415" }, "gist": { "data": { "description": "Untitled.ipynb", "public": true }, "id": "e7f6b078c47babcbc944e4486267d415" }, "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.9.0" } }, "nbformat": 4, "nbformat_minor": 2 }