gmaps
gmaps copied to clipboard
fig.add_layer is not working
Hello,
I've been trying to plot some data on a map using gmaps, however with no luck..
This is the code I'm running:
locations = locations_df[['latitude','longitude']] weights = locations_df['category'] fig = gmaps.figure fig.add_layer(gmaps.heatmap_layer(locations, weights=weights)) fig
And this is output of that piece of code:
AttributeError Traceback (most recent call last)
AttributeError: 'function' object has no attribute 'add_layer'
Line 4, you've not called the figure function, only assigned it to another variable. You need to add parenthesis after gmaps.figure
.