Hi,
I create polygon with the SketchViewModel and when I select the polygon, the fill color selection is "very light blue", I would like that be "transparent"
is it possible ? what the best way ? (sketch._internalGraphicsLayer.graphics.map ?)
Thanks a lot
Solved! Go to Solution.
Hi @LionelGOUBET ,
Set the view's or the layer view's highlightOptions
const view = new MapView({
container: "viewDiv",
highlightOptions: {
fillOpacity: 0
}
});
Hi @LionelGOUBET ,
Set the view's or the layer view's highlightOptions
const view = new MapView({
container: "viewDiv",
highlightOptions: {
fillOpacity: 0
}
});
thanks great Sage