{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "0.3.0+162.g0540622.dirty\n" ] } ], "source": [ "import folium\n", "\n", "print(folium.__version__)" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
" ], "text/plain": [ "" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from folium.plugins import MeasureControl\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 2", "language": "python", "name": "python2" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 2 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython2", "version": "2.7.13" } }, "nbformat": 4, "nbformat_minor": 2 }