In [4]:
%%latex
\begin{align}
\sin&=\cos\\
\theta&=\phi
\end{align}


\begin{align} \sin&=\cos\\ \theta&=\phi \end{align}

In [9]:
import folium
map_osm = folium.Map(location=[45.5236, -122.6750])
map_osm.save(outfile='osm.html')

In [28]:
map_3 = folium.Map(location=[46.1991, -122.1889], tiles='Stamen Terrain',
                   zoom_start=13)
map_3.lat_lng_popover()
map_3.save(outfile='sthelens.html')


/Users/dawes/anaconda/lib/python3.5/site-packages/ipykernel/__main__.py:3: FutureWarning: lat_lng_popover is deprecated. Use add_children(LatLngPopup) instead
  app.launch_new_instance()

In [36]:
from IPython.display import HTML

In [39]:
IFrame("./sthelens.html",width=700, height=700)


Out[39]:

In [ ]: