PanelPosition
この型は、主にフロービューポートの上に要素を配置するために使用されます。たとえば、<MiniMap />
コンポーネントと <Controls />
コンポーネントは、この型の position
プロパティを取ります。
export type PanelPosition =
| 'top-left'
| 'top-center'
| 'top-right'
| 'bottom-left'
| 'bottom-center'
| 'bottom-right';