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