geospatialdraw
Version:
Geospatial Map Drawing Library
14 lines (13 loc) • 397 B
TypeScript
import * as React from 'react';
import { Shape } from '../../shape-utils';
import { GeometryJSON } from '../../geometry';
type Props = {
/** Geometry GeoJSON */
geo: GeometryJSON;
/** Okay button handler */
onOk: (geo: GeometryJSON) => void;
/** Geometry shape */
shape: Shape;
};
declare const AllShapesEditorDialog: React.FC<Props>;
export default AllShapesEditorDialog;