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? :-)
Yes, MapBrowserEvent
is a generic type:
function OnMapClick(Event : MapBrowserEvent<UIEvent>)