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

    Interface IPointQueryFeatures

    点查询实体参数

    interface IPointQueryFeatures {
        zoom?: number;
        mapid?: string;
        version?: string;
        layer?: string;
        limit?: number;
        fields?: string;
        geom?: boolean;
        simplifyTolerance?: boolean;
        useCache?: boolean;
        toMapCoordinate?: boolean;
        x: number;
        y: number;
        pixelsize?: number;
        condition?: string;
        maxGeomBytesSize?: number;
        pixelToGeoLength?: 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.

    x: number

    查询的坐标X.

    y: number

    查询的坐标Y.

    pixelsize?: number

    像素大小.

    condition?: string

    条件.

    maxGeomBytesSize?: number

    返回最大的几何字节数.

    pixelToGeoLength?: number

    当前一个像素表示多少几何长度,如果输入了此值,则为此值为主,否则,根据输入的zoom值后台自动计算.