'hvplot points with geo true does not show the map
all_neighborhoods_df.hvplot.points('Lon', 'Lat', geo=True, color="gross_rent",
size="sale_price_sqr_foot", frame_height=500,
frame_width=700, title="Neighborhood Map")
When I looked through the documentation it said that having geo=True will bring the map but the result I received is this:

The result I should get is something like this:

Solution 1:[1]
The geo parameter just makes hvplot aware of your intention to display geographic data and as such it will handle projecting the data. You need to define tiles (e g. 'ESRI') to get a basemap (this is shown in the first example of the geographic user guide of the documentation).
Solution 2:[2]
Try adding tiles="OSM", inside your () for your hvplot.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | MaximeL |
| Solution 2 | cmiskovich |
