# !pip install leafmap import leafmap # leafmap.update_package() data = "https://raw.githubusercontent.com/opengeos/leafmap/master/examples/data/us_states.json" Map = leafmap.Map(center=[40, -100], zoom=4, add_google_map=False, layers_control=True) Map.add_labels( data, "id", font_size="12pt", font_color="blue", font_family="arial", font_weight="bold", ) Map Map.remove_labels()