Hello, I have this mark in a globe, it's just a circle, and I would like to change the cursor to pointer when hovering it. Can you help me?
const geometryPolyne = new Polyline({
paths,
});
const symbolLine = new LineSymbol3D({
symbolLayers: [
{
type: "line",
material: {
color: "#EB995E",
},
size: 3,
cap: "round",
join: "round",
},
],
});
const polylineGraphic = new Graphic({
geometry: geometryPolyne,
symbol: symbolLine,
});
view.graphics.add(polylineGraphic);