Artyom Lebedev
Artyom Lebedev
Workaround with monkey-patching if somebody encountered this bug: ```js L.GridLayer.prototype.redraw = function() { if (this._map) { this._removeAllTiles(); const tileZoom = this._clampZoom(Math.round(this._map.getZoom())); if (tileZoom !== this._tileZoom) { this._tileZoom = tileZoom; this._updateLevels();...
Looks strange. AFAIK, DXF uses `\U+XXXX` sequence for representing custom unicode code point, which is supported by this library. Also it might be used directly if file is UTF-8 encoded....
Unfortunately, rendering various line styles currently is not implemented.
This is most probably caused by non-conventional layout of vertex coordinates buffer. It is 2D viewer, so it operates with 2D entities, and does not store Z coordinate. Which in...
Yes, this will work (and costs 33% memory waste which is significant for gigabytes sized files), but the raycasting result still be rendering batch, not the initial DXF entities. There...
Some sample file needed. It may be some synthetic minimalistic sample illustrating some particular problem.
There is no simple trick for that. All rendered graphics primitives are grouped by material to minimize the number of draw calls. So each such batch can contain fragments from...