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
I'm trying to show a dot at the vertices of a line_string, but not at the added geodesic points. So I'm trying to figure out if there's any "meta" setting which can be used in the style to filter out the geodesic points (while still showing dots at the original vertices), like:
// this puts a dot at original vertices AND geodesic points
id: "gl-draw-line-static-vertices",
type: "circle",
filter: [
"all",
["==", "$type", "LineString"],
["==", "active", "false"],
["==", "mode", "static"],
],
I was hoping I could do something like:
filter: [
"all",
["==", "$type", "LineString"],
["!=", "meta", "geodesic"], // ANY WAY TO DO A FILTER LIKE THIS?
["==", "active", "false"],
["==", "mode", "static"],
],
Is this possible?
The text was updated successfully, but these errors were encountered:
I'm trying to show a dot at the vertices of a line_string, but not at the added geodesic points. So I'm trying to figure out if there's any "meta" setting which can be used in the style to filter out the geodesic points (while still showing dots at the original vertices), like:
I was hoping I could do something like:
Is this possible?
The text was updated successfully, but these errors were encountered: