UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

67 lines (66 loc) 1.73 kB
import { Type } from "./type"; /** * Describes available types of item represented by the current row of a shapefile. */ export declare enum ShapeType { /** * A placeholder value which cannot occur when reading a shapefile. */ None = 0, /** * Specifies a point shape. */ Point = 1, /** * Specifies a polyline shape. */ PolyLine = 3, /** * Specifies a polygon shape. */ Polygon = 5, /** * Specifies a polypoint shape (not supported; cannot occur when reading a shapefile) */ PolyPoint = 8, /** * Specifies a polypoint shape (not supported; cannot occur when reading a shapefile) */ PointZ = 11, /** * Specifies a polylinez shape */ PolyLineZ = 13, /** * Specifies a polygonz shape */ PolygonZ = 15, /** * Specifies a polypointz shape (not supported; cannot occur when reading a shapefile) */ PolyPointZ = 18, /** * Specifies a pointm shape (not supported; cannot occur when reading a shapefile) */ PointM = 21, /** * Specifies a polylinem shape (not supported; cannot occur when reading a shapefile) */ PolyLineM = 23, /** * Specifies a polygonm shape (not supported; cannot occur when reading a shapefile) */ PolygonM = 25, /** * Specifies a polypointm shape (not supported; cannot occur when reading a shapefile) */ PolyPointM = 28, /** * Specifies a polypatchm shape (not supported; cannot occur when reading a shapefile) */ PolyPatch = 31 } /** * @hidden */ export declare let ShapeType_$type: Type;