videx-3d
Version:
React 3D component library designed for sub surface visualizations in the browser
27 lines (26 loc) • 709 B
TypeScript
import { PropsWithChildren } from 'react';
/**
* UtmPosition props
* @expand
*/
export type UtmPositionProps = {
easting: number;
northing: number;
altitude?: number;
};
/**
* Container component which allows sub components positioned relative to a UTM coordinate. Used with the `UtmArea`
* component.
*
* @example
* <UtmArea utmZone="31N" origin={[474000, 6522000]}>
* <UtmPosition easing={easting} northing={northing}>
* { children }
* </UtmPosition>
* </UtmArea>
*
* @see {@link UtmArea}
*
* @group Components
*/
export declare const UtmPosition: ({ easting, northing, altitude, children }: PropsWithChildren<UtmPositionProps>) => import("react/jsx-runtime").JSX.Element;