Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Geoviews 中是否有办法始终只显示地图的一个小框/部分,而不是缩小整个世界?它似乎总是以显示整个世界的方式开始。我想知道是否有任何选项可以选择最小/最大纬度和最小/最大经度?
如果您单独显示 WMTS 元素,它将默认为全局视图。但是,您可以通过设置元素的范围来覆盖它,例如:
gv.WMTS(some_url, extents=(-70, 20, -50, 30))
范围定义为(左、下、右、上)边的 4 元组。但是,如果您在瓦片源上覆盖一些实际数据,它应该自动将范围设置为您的数据范围。