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
As of #1034, there is a marker being shown when user clicks a spot in map. The purpose is to exactly indicate which point was clicked and it's especially relevant when it comes to polygons. See the example below: without the blue marker user wouldn't have any idea where the click occurred:
So this is extremely important for polygons.
But, if click occurs on a point (or line) layer, there will be a duplicate symbol. The reason for this is that we use the same marker image to both indicate where the click occurred and to mark the selected feature:
Proposed solution
There are at least two possible ways of solving this:
a. use a different image marker
b. only show the click marker if click resulted in polygon results
The second option, B, is somehow difficult to solve. There will be situations where we get responses from multiple type of layers. Shouldn't the marker be shown at all if at least one of the layers contains point features? How can we be sure that user isn't looking at the polygons and needs to see the click marker?
So, currently, the most feasible solution is A.
The text was updated successfully, but these errors were encountered:
A clear, blue ring indicates where click occurred on the polygon:
When it comes to points, the same blue ring is there, but it is non-disturbing now and the icon marker clearly dominates and shows the selected point feature:
Setting a marker URL, anchor, fill color etc will result in the specified icon to be printed in map. We will also respect the color setting! See example below (note that transparency is not used when tinting the icon color, though).
Note that for best result, a white icon should be used, otherwise the color tinting may lead to unexpected results.
As of #1034, there is a marker being shown when user clicks a spot in map. The purpose is to exactly indicate which point was clicked and it's especially relevant when it comes to polygons. See the example below: without the blue marker user wouldn't have any idea where the click occurred:
So this is extremely important for polygons.
But, if click occurs on a point (or line) layer, there will be a duplicate symbol. The reason for this is that we use the same marker image to both indicate where the click occurred and to mark the selected feature:
Proposed solution
There are at least two possible ways of solving this:
a. use a different image marker
b. only show the click marker if click resulted in polygon results
The second option, B, is somehow difficult to solve. There will be situations where we get responses from multiple type of layers. Shouldn't the marker be shown at all if at least one of the layers contains point features? How can we be sure that user isn't looking at the polygons and needs to see the click marker?
So, currently, the most feasible solution is A.
The text was updated successfully, but these errors were encountered: