Represents a record of data from a Shapefile (.shp and .dbf).

IgxShapefileRecord

new IgxShapefileRecord(): IgxShapefileRecord

Returns IgxShapefileRecord

ngAcceptInputType_bounds: string | IgRect
bounds: IgRect
fieldValues: any

Gets an array of field names and values for this record

get fieldsNames(): string[]

Returns string[]

Gets an arry of field types and values for this record

get fieldsTypes(): string[]

Returns string[]

get i(): ShapefileRecord

Returns ShapefileRecord

Gets an array of arrays of points for this record

get points(): Point[][]

Returns Point[][]

Gets the shape type, as read from the header of the Shapefile.

get shapeType(): ShapeType

Returns ShapeType

findByName(name: string): any

Parameters

  • name: string

Returns any

getFieldValue(fieldName: string): any

Parameters

  • fieldName: string

Returns any

setFieldValue(fieldName: string, value: any): void

Parameters

  • fieldName: string
  • value: any

Returns void