Search code examples
typescriptopenlayers

open layers & typescript : Type error: Generic type 'MapBrowserEvent<EVENT>' requires 1 type argument(s)


trying to add an on click handler : function OnMapClick(Event : MapBrowserEvent )

typescript complains with : Type error: Generic type 'MapBrowserEvent' requires 1 type argument(s).

Can anyone help with this? :-)


Solution

  • Yes, MapBrowserEvent is a generic type:

    function OnMapClick(Event : MapBrowserEvent<UIEvent>)