In [1]:
from bokeh.plotting import output_file, show, output_notebook
from bokeh.models import GeoJSONDataSource
from bokeh.plotting import figure
from bokeh.sampledata.sample_geojson import geojson

geo_source = GeoJSONDataSource(geojson=geojson)

p = figure()
p.circle(x='x', y='y', alpha=0.9, source=geo_source)
output_notebook()
show(p)


Loading BokehJS ...
Out[1]:

<Bokeh Notebook handle for In[1]>


In [ ]: