# !pip install leafmap filepath = "https://raw.githubusercontent.com/opengeos/leafmap/master/examples/data/us_cities.csv" import leafmap.leafmap as leafmap m = leafmap.Map() m.add_heatmap( filepath, latitude="latitude", longitude="longitude", value="pop_max", name="Heat map", radius=20, ) m import leafmap.foliumap as leafmap m = leafmap.Map() m.add_heatmap( filepath, latitude="latitude", longitude="longitude", value="pop_max", name="Heat map", radius=20, ) m