potree icon indicating copy to clipboard operation
potree copied to clipboard

Scan Stations disappear when panning or zooming

Open sSeLeMaHs opened this issue 1 year ago • 1 comments

I tried to implement 360 Images from my Scan Stations like shown in the "360" example.

After a few challenges it works quite well, my Images are perfetly aligned with the pointcloud.

My big problem is that the Knobs representing my Scan Stations disappear as soon as i pann or zoom.

I implemented the following code:

async function run(){

		Potree.Images360Loader.load("./Bilder", viewer).then( images => {
			viewer.scene.add360Images(images);
		});

		viewer.mapView.showSources(false);
	}

As both the Images and the Pointcloud use the same local coordinate System, i dont need a transformation as in the example. But can i simply remove the transform part?

sSeLeMaHs avatar Sep 27 '24 10:09 sSeLeMaHs