videx-3d
Version:
React 3D component library designed for sub surface visualizations in the browser
31 lines (30 loc) • 656 B
TypeScript
import { GridProps } from './Grid';
/**
* UtmGrid props
* @expand
*/
export type UtmGridProps = GridProps & {
relativeValues?: boolean;
};
/**
* A convenience component for setting up a Grid component with Utm coordinates.
*
* @example
* <UtmGrid
* size={[30000, 30000]}
* cellSize={1000}
* subDivisions={5}
* gridLineWidth={0.015}
* opacity={0.9}
* showAxes
* showRulers
* />
*
* @remarks
* This component needs to be a child of the `UtmArea` component in order to work.
*
* @see {@link Grid}
*
* @group Components
*/
export declare const UtmGrid: (props: UtmGridProps) => import("react/jsx-runtime").JSX.Element;