获取 shp 属性

优质
小牛编辑
115浏览
2023-12-01

接口说明

获取shp属性
如需调用,请访问 开发者文档 来查看详细的接口使用说明
该接口仅开放给已获取SDK的开发者
如开启https功能,请求地址的协议应改为https,如:https://www.example.com/wish3dearth/api/access/v1.0.0/getLicenseInfo

API地址

GET /wish3dearth/api/material/shp/v1.0.0/getShpAttributeByMaterilId

是否需要登录

请求字段说明

参数类型请求类型是否必须说明
materialIdstringquery素材ID

响应字段说明

参数类型说明
createTimestring创建时间
idstringid
shpTableNamestring
userIdstring用户ID
materialIdstring素材ID
geometryTypestring几何类型
rowsNumbernumber行数
sridnumber数据坐标系

响应成功示例

{
  "code": 0,
  "data": {
    "createTime": "2019-12-11 14:44:24",
    "id": "559072e177dd438b88661393964ed644",
    "shpTableName": "8f4ada2b06e34a56a4ffefeaf977454a",
    "userId": "289baa7eb41a421c9014fb1a00c887de",
    "materialId": "8f4ada2b06e34a56a4ffefeaf977454a",
    "geometryType": "MULTIPOLYGON",
    "rowsNumber": 1089,
    "srid": 4326
  },
  "message": "成功"
}

响应失败示例

{
  "code": 500,
  "message": "未知错误,请及时联系管理人员进行处理"
}

响应接受类型

application/json

响应状态码

HTTP状态码原因
0成功
200OK
401Unauthorized
403Forbidden
404Not Found
10000token不能为空
10001token已失效,请重新登录
99998非法请求
99999服务器异常

示例代码

$.ajax({

    url: '/wish3dearth/api/material/shp/v1.0.0/getShpAttributeByMaterilId?materialId=',

    type: 'GET',

    data: '',

    dataType: 'text',

    cache: false,

    contentType: 'application/json',

    xhrFields: {

        withCredentials: true

    },

    crossDomain: true,

    success:function(data){

        // 成功返回值

    },

    error:function(XMLHttpRequest, textStatus, errorThrown){

    

    }

})