Hi,
I wanna add dynamic image for my project. Let me explain you ;
if I click on the current position of the mouse on the left screen a blue image appears. But I wanna blue image create just on feature.I didn't see any post in ArcGIS API for javascript document about this topic. Maybe I can try change highlight options and make my blue image.
I will be happy if you can help me about this .
Solved! Go to Solution.
Try setting the MapView highlightOptions.
const view = new MapView({
map: webmap,
container: "viewDiv",
highlightOptions: {
color: [255, 255, 0, .9],
haloOpacity: 0.8,
fillOpacity: 0.5
}
});
Thank you for answering my question. I'm looking for something different.Can I change the highlight image? Can I put the blue image instead of the default image ?
I can actually click on the feature layer. In this way, I can highlight my points. Can I make a system that opens on the map when I click with this method?
What I want to do is actually like this;