Open ghost opened 2 years ago
Is there a way to do the following?
fig = gmaps.figure(center=center, zoom_level=11, map_type='HYBRID') heatmap_layer = gmaps.heatmap_layer(d[['location_latitude', 'location_longitude']]) heatmap_layer.max_intensity = 100 heatmap_layer.point_radius = 5 fig.add_layer(heatmap_layer) fig.save('xyz.png') #
Is there a way to do the following?