Nicolai Oliver Verbaarschot

Results 48 comments of Nicolai Oliver Verbaarschot

I've created a repo containing a minimal reproduction of my issue. If anyone has the chance to try to run it, it would be greatly appreciated. Or if someone can...

Anyone have a minimal working example I can clone? Or some tips on what to try further? I would really like to get this running but I simply cannot 🤷

OH, the default scale was simply so small that I couldn't see it. setting `map.scale.set(1000, 1000, 1000);` has done the trick. Though would love some tips on camera settings to...

This happens on kitty as well, setting `export TERM=xterm-256color` fixes it.

> I'm trying very hard to make the map work in my project with the correct scale. In my case i don't want to change the map position, but move...

@cyango This is my workaround ```javascript const magicNumber = 40030200; const mapScale = 50000000; const magicRatio = magicNumber / mapScale; streetMap.scale.set(mapScale, mapScale, mapScale); point = { lat: 50.00, lon: 10.00...

I experienced this. When scaffolding a threlte8 project with `bun create threlte@next` and selecting the option for model pipeline, the generated `model-pipeline.js` script defaults the draco config option to null....

Thanks for the response. The key to using geo-three here is that the tile server provides the `address/zoom/x/y.format` URL pattern. I looked at network activity on the browser devtools when...