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