Adrien

Results 37 comments of Adrien

> config.options has been almost removed since the creation of the sources, so it doesn't have much senses to keep it. Ok for deprecating `this.options`. > This assignment exists to...

While it is not checked by iTowns, it should be checked in the browser cache. In your debugging tool, is the `Disable cache` option unchecked ? Here is what I...

I don't really know the 3dtiles part of iTowns, so I have no clue here. Maybe @jailln can help here ?

Damn sorry I got confused with another thread ! For most data in iTowns, apart from 3dtiles and pointclouds, it is set in the `Cache` in the [`DataSourceProvider`](https://github.com/iTowns/itowns/blob/master/src/Provider/DataSourceProvider.js#L126). For 3dtiles,...

Methods used for drawing stuff on a `ColorLayer` (which I assume you are using) are all the one from `CanvasRenderingContext2D`, and for the color here it is using [`fillStyle`](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fillStyle). So...

It also seems you have some depth issue (see the weird oceans for example), that might be related. You might need to enable hardware acceleration on your computer/browser. There are...

> A quick fix could be to have itowns.ShapefileParser.parse accept an argument of type ArrayBuffer containing the zip and call parseZip(data.zip || data) internally Yes, I let you do this...