MapKit JS: Show "cursor pointer" when hovering over annotation

155 Views Asked by At

I'm using Apple's MapKit JS, and I'm wondering how I can configure it to show a "cursor pointer" when hovering over the annotations in the map? Now they are clickable, but the cursor never changes.

I'd like to show a cursor like this:

enter image description here

My map: enter image description here

1

There are 1 best solutions below

0
On

You can create fully custom annotations like so:

let opts = { title: "hi" };
let pin = new window.mapkit.Annotation(
    new window.mapkit.Coordinate(latitude, longitude),
    (coord, opts) => {
        let div = document.createElement("div");
        div.classList.add("custom-pin");
        // Customize div, add img, etc
        return div;
    },
    opts
);
map.addAnnotation(pin);

Then you can target your custom class e.g. .custom-pin { cursor:pointer; }