I'm trying to plot some GPS data on a map tile. My code is very simple (based on this: http://pyviz.org/tutorial/A2_Dashboard_Workflow.html) :
import hvplot.pandas
from geoviews.tile_sources import EsriImagery
GPS = df.hvplot(x='LongCoord', y='LatCoord')
track_GPS * EsriImagery
This code returns the GPS data correctly proportioned and as expected. But the background image is white, but does contain a copyright notice for Esri. Earthstar Geographics.
This suggests to me I am connecting to Esri and it is working to the extent that the axis scaling is correct. But I don't see any satellite imagery.
Any ideas what could be going wrong?
Ben