import Zondy from '../Zondy'
/**
* @description IGS服务几何类型,针对IGS服务查询等
*/
const IGSGeometryType = {
geometry: 'geometry',
point: 'point',
point3D: 'point3d',
lineString: 'line',
polygon: 'polygon',
multiPoint: 'multiPoint',
multiLineString: 'multiLine',
multiPolygon: 'multiPolygon',
circle: 'circle',
extent: 'rect',
extent3D: 'rect3d'
}
Zondy.Enum.IGSGeometryType = IGSGeometryType
export default IGSGeometryType
