root = {
const dataset_name = 'Xenium_V1_hBoneMarrow_nondiseased_section_outs'
const base_url = 'https://raw.githubusercontent.com/broadinstitute/' +
'celldega_small_dataset_test/main/' + dataset_name +
'_landscape_files'
const inst_height = 500
const ini_x = 12000
const ini_y = 5100
const ini_z = 0
const ini_zoom = -5
const max_image_zoom = 16
const bounce_time = 150
const token = ''
const root = html `<div style="height:${inst_height}px; margin-bottom: 50px"></div>`
celldega.default.landscape_ist(
root,
{},
token,
ini_x,
ini_y,
ini_z,
ini_zoom,
base_url,
'',
0.25
)
return root
}