David Lewinzky

Results 12 comments of David Lewinzky

Hi, there is good page with examples: https://github.com/melowntech/vts-browser-js/wiki/Examples Related examples are: ### [Geodata with dynamic render](https://jsfiddle.net/aq29vhpm/) This example is showing how to combine geodata with dynamically rendered features. ### [Geodata...

Roll component is not supported in autopilot. Interpolation became complex with roll component. Quaternions would have to be used in some cases. But you can try luck and modify source...

Unfortunately there are no other methods provided by API. You can try to extend existing rendering methods used by "CustomRender". For example make them render more points in one draw...

Hi, .png does not affect rendering speed in any way. Its more difficult to determine cause without seeing application, but in general terms, rendering of large amount of points can...

Hi, different style for each point in PointArray is not supported and probably will no be in near future. It its more probable that some optimizations for single points will...

Reason for why is pointArray faster than single point is that in case of pointArray are all points rendered at once. In case of single point, every point is rendered...

There is example how to draw transparent meshes: https://jsfiddle.net/ay6c5pxj/ Main prerequisite is to use render state where is blending enabled: `transparentMesh = renderer.createState({culling:true, blend:true});` and set this state when you...

Unfortunately I do not have required setup to replicate these results.

There is no API for drawing point. But you can use renderer.drawImage to draw points. Small image is almost as good as point. In case you need to draw many...

You are right only one polygon is returned in click event. Which one depends on several factors. All features with some click/hover event are rendered into special texture. Where each...