You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
only one of this styles will be used for printing. Actually is the one that is defined in the GeoJSON feature properties:
"properties": {
"_style": 1,
...
} },
I tried to add it as "0 1", [0, 1], or ["0", ",1"], but it didn't work, resulting in the same or no rendering of the feature at all.
A found solution for it is to actually render the same element as many times as there are a style, but that is a very poor and dumb solution in my opinion. There has got to be a better way to handle this.
The text was updated successfully, but these errors were encountered:
This is related to the GeoJSON serializer.
If a layer has two styles, only one of them will be used.
e.g.
only one of this styles will be used for printing. Actually is the one that is defined in the GeoJSON feature properties:
I tried to add it as
"0 1"
,[0, 1]
, or["0", ",1"]
, but it didn't work, resulting in the same or no rendering of the feature at all.A found solution for it is to actually render the same element as many times as there are a style, but that is a very poor and dumb solution in my opinion. There has got to be a better way to handle this.
The text was updated successfully, but these errors were encountered: