In [6]:
import jupyterviz
In [7]:
markers = [{
"name": "Canada",
"url": "https://en.wikipedia.org/wiki/Canada",
"lat": 56.130366,
"lng": -106.346771
}]
In [8]:
jupyterviz.viz(type="leafletmap",data=markers,center=[48.85, 2.35 ],zoom=6)
Out[8]:
In [9]:
cities = [{
"name": "Paris",
"latitude": 48.85,
"longitude": 2.35 ,
"fillKey": "orange",
"radius": 5
}]
In [10]:
jupyterviz.viz(type="datamap",data=cities,center=[33.5, 86.8 ],scale=200)
Out[10]:
In [14]:
jupyterviz.viz(type="d3map",data={'cities':[] , 'routes':[]})
Out[14]:
In [ ]: