Benoit Simard

Results 60 comments of Benoit Simard

- Layout hook parameters are for the configuration of the layout. - To load a serialzed graph in graphology, you can use the `from` function : https://graphology.github.io/instantiation.html#static-from-method - For FA2...

I have the same issue. Here is a jsbin that demonstrate it : https://jsbin.com/cufaqak/edit?html,output

I made locally a new test in the `map-style-spec` repo. For memory, here is its definition : ``` { "propertySpec": { "type": "formatted", "property-type": "data-constant", "expression": { "interpolated": true, "parameters":...

Found it! It's in the code of `symbol_style_layer.ts` in the `hasPaintOverride` function. It should also check when the `textfield` is a `composite` type. I should be able to do a...

@HarelM the PR is all yours :) https://github.com/maplibre/maplibre-gl-js/pull/6343

I'm not sure it's an issue with the package, due to the fact that you need to add the extension. What version of `graphology-layout-forceatlas2` do you use ? Can you...

Sorry for the lag. For me it's weird that this setting fixes your issue, it should not be related. Can you try to remove it, and put your sigma's settings...

Yes you can use `sigma.getGraph()` to modify the graph without any issue ! I't's the recommanded way. About `redux`, I'm not expert but to store object (and not only data)...

Both are doing pretty much the same thing, it depends on how you prefer writing code (outside the react sigma context or inside it). The external state give you access...

Labels are displayed in canvas in sigma, and it uses the function [filltext](https://developer.mozilla.org/fr/docs/Web/API/CanvasRenderingContext2D/fillText) which doesn't support line breaks. So there is no native support for your need. You can write...