Skip to content

Commit

Permalink
Update tile paramaters to support point and multiple geometry layers
Browse files Browse the repository at this point in the history
  • Loading branch information
XanthosXanthopoulos committed Dec 14, 2023
1 parent 838316b commit 0c518d5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"dependencies": {
"@jupyter-widgets/base": "^2 || ^3 || ^4 || ^5 || ^6",
"@jupyterlab/application": "^3 || ^4",
"@tiledb-inc/viz-core": "1.0.2-alpha.12"
"@tiledb-inc/viz-core": "^1.0.2-alpha.13"
},
"devDependencies": {
"@jupyterlab/builder": "^3 || ^4",
Expand Down Expand Up @@ -100,5 +100,6 @@
}
}
},
"styleModule": "style/index.js"
"styleModule": "style/index.js",
"packageManager": "yarn@3.6.3"
}
3 changes: 2 additions & 1 deletion pybabylonjs/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@
"name_space": None,
"array_name": None,
"group_name": None,
"geometry_array_name": None,
"geometry_array_names": None,
"point_group_names": None,
"base_group": None,
"token": None,
"tiledb_env": None,
Expand Down
3 changes: 2 additions & 1 deletion src/widget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,8 @@ export class BabylonTileImageView extends BabylonBaseView {
namespace: this.values.name_space,
arrayID: this.values.array_name,
groupID: this.values.group_name,
geometryArrayID: this.values.geometry_array_name,
geometryArrayID: this.values.geometry_array_names,
pointGroupID: this.values.point_group_names,
baseGroup: this.values.base_group,
token: this.values.token,
tiledbEnv: this.values.tiledb_env,
Expand Down

0 comments on commit 0c518d5

Please sign in to comment.