WebCAD-Lib-TS API 文档 - v1.0.0
    Preparing search index...

    Interface IRectQueryFeatures

    矩形查询实体参数

    interface IRectQueryFeatures {
        zoom?: number;
        mapid?: string;
        version?: string;
        layer?: string;
        limit?: number;
        fields?: string;
        geom?: boolean;
        simplifyTolerance?: boolean;
        useCache?: boolean;
        toMapCoordinate?: boolean;
        x1?: number;
        y1?: number;
        x2?: number;
        y2?: number;
        condition?: string;
        maxGeomBytesSize?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    zoom?: number

    当前级别.

    mapid?: string

    地图ID(为空时采用当前打开的mapid).

    version?: string

    地图版本(为空时采用当前打开的地图版本).

    layer?: string

    图层名称(为空时采用当前打开的地图图层名称).

    limit?: number

    返回最多的记录条数.

    fields?: string

    是返回的字段列表,多个之是用逗号,分开,如. "name,objectId"

    geom?: boolean

    是否为几何图形查询.

    simplifyTolerance?: boolean

    GeoJSON几何数据简化墨托卡距离,默认为零,不简化。例如允许10级别以上一个像素级别的误差,可用 map.pixelToGeoLength(1, 10) * vjmap.Projection.EQUATORIAL_SEMIPERIMETER * 2 / map.getGeoBounds(1.0).width()

    useCache?: boolean

    启动cache(内存打开的图形有效).

    toMapCoordinate?: boolean

    查询返回的坐标默认为墨卡托坐标,返回会程序会自动转化为cad坐标,如果要直接返回cad地图坐标,需要把toMapCoordinate设置为true.

    x1?: number

    查询的坐标X1. (如果x1,y1,x2,y2同时不输的话,表示是查询整个图的范围

    y1?: number

    查询的坐标Y1.

    x2?: number

    查询的坐标X2.

    y2?: number

    查询的坐标Y2.

    condition?: string

    条件.

    maxGeomBytesSize?: number

    返回最大的几何字节数.