In [4]:
%%latex
\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')
In [36]:
from IPython.display import HTML
In [39]:
IFrame("./sthelens.html",width=700, height=700)
Out[39]:
In [ ]: