In [1]:
name = '2016-03-03-meeting-location'
title = 'Meeting location (folium example)'
tags = 'maps, folium'
author = 'Denis Sergeev'

In [2]:
from nb_tools import connect_notebook_to_post
from IPython.core.display import HTML

html = connect_notebook_to_post(name, title, tags, author)

In [3]:
import folium

In [4]:
map_osm = folium.Map(location=[52.621, 1.236], zoom_start=18)
m = folium.Marker([52.6211, 1.23596], popup='Python Group meeting: QUEENS 2.02').add_to(map_osm)

In [5]:
map_osm


Out[5]:

In [6]:
HTML(html)


Out[6]:

This post was written as an IPython (Jupyter) notebook. You can view or download it using nbviewer.