AirMap
In [ ]:
Copied!
pip install netpanda
pip install netpanda
In [1]:
Copied!
import netpanda
import netpanda
In [2]:
Copied!
m = netpanda.Map(center=[35.0, -84.0], zoom=5)
m.add_route(start=[35.9633, -83.9267], end=[33.7490, -84.3880], color="red", weight=3)
m.add_marker([35.9633, -83.9267], "Knoxville")
m.add_marker([33.7490, -84.3880], "Atlanta")
m.draw_routes()
m
m = netpanda.Map(center=[35.0, -84.0], zoom=5)
m.add_route(start=[35.9633, -83.9267], end=[33.7490, -84.3880], color="red", weight=3)
m.add_marker([35.9633, -83.9267], "Knoxville")
m.add_marker([33.7490, -84.3880], "Atlanta")
m.draw_routes()
m
Map(center=[35.0, -84.0], controls=(ZoomControl(options=['position', 'zoom_in_text', 'zoom_in_title', 'zoom_ou…