#!/usr/bin/env python # coding: utf-8 # In[1]: from ipyleaflet import ( Map, Marker, TileLayer, ImageOverlay, Polyline, Polygon, Rectangle, Circle, CircleMarker, GeoJSON, DrawControl ) # In[2]: center = [34.6252978589571, -77.34580993652344] zoom = 10 # In[3]: m = Map(center=center, zoom=zoom) m