MouseEvent class do not contain key codes.
Is it possible to get key code on mouse click event?
final mapOptions = new gmap.MapOptions()
..zoom = 8
..disableDoubleClickZoom = true
..center = new gmap.LatLng(41.850033, -87.6500523);
map = new gmap.GMap(mapRoot, mapOptions);
map.onClick.listen((gmap.MouseEvent me) {
// TODO How to get key code there?
//if (me.ctrlKey || me.metaKey)
addMarker(me.latLng, ctrlClick);
});
MouseEvent class do not contain key codes. Is it possible to get key code on mouse click event?