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
Currently the size of a MarkSymbolizer is described by a single value: radius
To allow asymetric symbolizers (eg. rectangle instead of square) the radius property could be replaced with: size which would be typed as [Expression<number>, Expression<number>] or we could add this type to the radius so it would look like this:
Currently the size of a
MarkSymbolizer
is described by a single value:radius
To allow asymetric symbolizers (eg. rectangle instead of square) the
radius
property could be replaced with:size
which would be typed as[Expression<number>, Expression<number>]
or we could add this type to theradius
so it would look like this:radius?: Expression<number> | [Expression<number>, Expression<number>]
The text was updated successfully, but these errors were encountered: