Function addMapboxEventListener

  • add a listener to mapbox events. See Mapbox docs for options

    Parameters

    • eventType: keyof MapEvents
    • debounceTime: number = 20
    • OptionallayerIds: string | string[]

    Returns void

    function App() {
    const callbackId = useRef();

    return (
    <div>
    <button
    onClick={() => {
    if (callbackId.current) {
    rpc.invoke("removeMapboxEventListener", [callbackId.current]);
    }
    rpc.invoke("addMapboxEventListener", ["mousedown", 100]).then(r => {
    callbackId.current = r;
    });
    giraffeState.addListener(["mapboxEvent"], (evt, { data: dataS }) => {
    console.log({ evt, data: JSON.parse(dataS) });
    });
    }}
    >
    add listener
    </button>
    <button
    onClick={() => {
    rpc.invoke("removeMapboxEventListener", [callbackId.current]);
    }}
    >
    remove listener
    </button>
    </div>
    );
    }