Я хочу построить сетку точек на некоторых плитках карты, и моя попытка сделать это:
points = hv.Points((np.random.rand(10), np.random.rand(10)))
x = ['a', 'b']
y = [1, 2, 3]
map_tiles = gts.tile_sources['EsriOceanBase']
plots = {}
for i in x:
for j in y:
plots[i,j] = points * map_tiles
hv.GridSpace(plots)
, но выдает эту ошибку:
AttributeError: unexpected attribute 'source' to TileRenderer, similar attributes are tile_source
:GridSpace [X,Y]
:Overlay
.Points.I :Points [x,y]
.WMTS.I :WMTS [Longitude,Latitude]
Есть идеи о том, что здесь происходит?