Type Alias SemanticGrpcGeometryExperimental

SemanticGrpcGeometry:
    | {
        point: SemanticGrpcCoordinate;
    }
    | {
        multiPoint: {
            points: readonly SemanticGrpcCoordinate[];
        };
    }
    | {
        polyline: {
            paths: readonly SemanticGrpcCoordinateSequence[];
        };
    }
    | {
        polygon: {
            rings: readonly SemanticGrpcCoordinateSequence[];
        };
    }
    | {
        multiPolygon: {
            polygons: readonly {
                rings: readonly SemanticGrpcCoordinateSequence[];
            }[];
        };
    }

Protobuf-free JSON pre-image of honua.v1.Geometry.