# !pip install leafmap import leafmap m = leafmap.Map() url = "https://raw.githubusercontent.com/opengeos/leafmap/master/examples/data/countries.geojson" m.add_geojson( url, layer_name="Countries", fill_colors=["red", "yellow", "green", "orange"], info_mode=False, ) in_geojson = "https://raw.githubusercontent.com/opengeos/leafmap/master/examples/data/cable_geo.geojson" m.add_geojson(in_geojson, layer_name="Cable lines", info_mode=False) m