本文整理匯總了TypeScript中neuroglancer/util/event_action_map.EventActionMap.fromObject方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript EventActionMap.fromObject方法的具體用法?TypeScript EventActionMap.fromObject怎麽用?TypeScript EventActionMap.fromObject使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類neuroglancer/util/event_action_map.EventActionMap
的用法示例。
在下文中一共展示了EventActionMap.fromObject方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: getDefaultRenderedDataPanelBindings
export function getDefaultRenderedDataPanelBindings() {
if (defaultRenderedDataPanelBindings === undefined) {
defaultRenderedDataPanelBindings = EventActionMap.fromObject(
{
'arrowleft': 'x-',
'arrowright': 'x+',
'arrowup': 'y-',
'arrowdown': 'y+',
'comma': 'z-',
'period': 'z+',
'keyz': 'snap',
'control+equal': 'zoom-in',
'control+shift+equal': 'zoom-in',
'control+minus': 'zoom-out',
'keyr': 'rotate-relative-z-',
'keye': 'rotate-relative-z+',
'shift+arrowdown': 'rotate-relative-x-',
'shift+arrowup': 'rotate-relative-x+',
'shift+arrowleft': 'rotate-relative-y-',
'shift+arrowright': 'rotate-relative-y+',
'at:control+wheel': {action: 'zoom-via-wheel', preventDefault: true},
'at:wheel': {action: 'z+1-via-wheel', preventDefault: true},
'at:shift+wheel': {action: 'z+10-via-wheel', preventDefault: true},
'at:dblclick0': 'select',
'at:control+mousedown0': 'annotate',
'at:mousedown2': 'move-to-mouse-position',
'at:control+mousedown2': 'select-annotation',
},
{label: 'All Data Panels'});
}
return defaultRenderedDataPanelBindings;
}
示例2: getDefaultPerspectivePanelBindings
export function getDefaultPerspectivePanelBindings() {
if (defaultPerspectivePanelBindings === undefined) {
defaultPerspectivePanelBindings = EventActionMap.fromObject(
{
'at:mousedown0': {action: 'rotate-via-mouse-drag', stopPropagation: true},
'at:shift+mousedown0': {action: 'translate-via-mouse-drag', stopPropagation: true},
'at:touchtranslate1': 'rotate-out-of-plane-via-touchtranslate',
},
{parents: [[getDefaultRenderedDataPanelBindings(), Number.NEGATIVE_INFINITY]]});
}
return defaultPerspectivePanelBindings;
}