Closed ahuang11 closed 1 year ago
If users ran gvts.OSM() on a global extent with the original zoom=8, it'll fetch many many tiles, and probably gets the user rate limited.
gvts.OSM()
I tried to use the utils.zoom_level to auto determine zoom, but I couldn't find a way to extract the bounds from WMTS.
utils.zoom_level
import geoviews as gv from geoviews import opts, tile_sources as gvts gv.extension('matplotlib') gvts.OSM()
As one of those people who were hit by an API limit, this is very much appreciated.
If users ran
gvts.OSM()
on a global extent with the original zoom=8, it'll fetch many many tiles, and probably gets the user rate limited.I tried to use the
utils.zoom_level
to auto determine zoom, but I couldn't find a way to extract the bounds from WMTS.