Hi,
i'm looking for a way to remove a box that appears when clicking 'browse feature' of the cluster's popup,
how to recreate the problem :
- click on cluster
- click on 'browse feature' in the cluster popup
this box does not disappear on click out ,
it disappears if I disable the layer or if I click another 'browse feature'.
is there even a way to prevent this box from opening ?
thanks
Solved! Go to Solution.
You can do this by changing the selectedClusterBoundaryFeature symbol.
view.popup.viewModel.selectedClusterBoundaryFeature.symbol = {
type: "simple-fill",
style: "none",
outline: null
};
Here's an app that demonstrates this: https://codepen.io/kekenes/pen/yLwWJoq?editors=100
You can do this by changing the selectedClusterBoundaryFeature symbol.
view.popup.viewModel.selectedClusterBoundaryFeature.symbol = {
type: "simple-fill",
style: "none",
outline: null
};
Here's an app that demonstrates this: https://codepen.io/kekenes/pen/yLwWJoq?editors=100
Thank you!