自定义图标 最后更新时间: 2024年08月30日
产品介绍
本文档 API 是通过 HTTPS 协议访问远程服务的接口,提供新建/删除/查询自定义图标相关的能力。
适用场景
- 图标样式-->设置图标-->『填充物』-->『自定义图标』
使用限制
详细的服务调用量限制可点我查阅。
使用说明
如无特殊声明,接口的输入参数和输出数据编码全部统一为 UTF-8 编码方式。
1、图标自定义填充物新增
请求地址
请求参数
示例代码(以java为例)
import com.amap.wia.openapi.test.lib.MyHttpUtils;//见 https://lbs.amap.com/api/wia-openapi/guide/tools/demo-lib
import com.amap.wia.openapi.test.lib.SignatureHelper;//见 https://lbs.amap.com/api/wia-openapi/guide/tools/biz-token-sign
/*
* 通用 import 内容等暂略
*/
public static void main(String[] args) {
String url = "https://restwia.amap.com/api/v1/wia/map/icon/config/add";
String key = "在高德开放平台申请的key";
String openId = "当前操作用户的openId";
String workMapId ="要操作的工作地图id";
String bizToken = "在高德开放平台申请的bizToken";
String bizSecret = "在高德开放平台申请的bizSecret";
Map<String, Object> requestParams = new HashMap<>();
requestParams.put("key", key);
requestParams.put("openId", openId);
requestParams.put("bizToken", bizToken);
String[] signArgs = new String[]{workMapId,openId};
requestParams.put("bizSign", SignatureHelper.calcSign(bizSecret, signArgs));
Map<String, Object> postParams = new HashMap<>();
postParams.put("workMapId", workMapId);
postParams.put("iconFillerShowType", 1);
postParams.put("iconFillerValue", "门");
url = MyHttpUtils.attachParamsToUrl(url, requestParams);
String response = MyHttpUtils.postFormUrlencoded(url, postParams);
System.out.println(response);
}
返回参数
附表
2、图标自定义填充物删除
请求地址
请求参数
示例代码(以java为例)
import com.amap.wia.openapi.test.lib.MyHttpUtils;//见 https://lbs.amap.com/api/wia-openapi/guide/tools/demo-lib
import com.amap.wia.openapi.test.lib.SignatureHelper;//见 https://lbs.amap.com/api/wia-openapi/guide/tools/biz-token-sign
/*
* 通用 import 内容等暂略
*/
public static void main(String[] args) {
String url = "https://restwia.amap.com/api/v1/wia/map/icon/config/remove/batch";
String key = "在高德开放平台申请的key";
String openId = "当前操作用户的openId";
String workMapId ="要操作的工作地图id";
String bizToken = "在高德开放平台申请的bizToken";
String bizSecret = "在高德开放平台申请的bizSecret";
Map<String, Object> requestParams = new HashMap<>();
requestParams.put("key", key);
requestParams.put("bizToken", bizToken);
requestParams.put("openId", openId);
String[] signArgs = new String[]{workMapId,openId};
requestParams.put("bizSign", SignatureHelper.calcSign(bizSecret, signArgs));
Map<String, Object> postParams = new HashMap<>();
postParams.put("workMapId", workMapId);
postParams.put("iconFillerIds", "50042888743012,50042888743009");
url = MyHttpUtils.attachParamsToUrl(url, requestParams);
String response = MyHttpUtils.postFormUrlencoded(url, postParams);
System.out.println(response);
}
返回参数
附表
3、图标自定义填充物分页查询
请求地址
请求参数
示例代码(以java为例)
import com.amap.wia.openapi.test.lib.MyHttpUtils;//见 https://lbs.amap.com/api/wia-openapi/guide/tools/demo-lib
import com.amap.wia.openapi.test.lib.SignatureHelper;//见 https://lbs.amap.com/api/wia-openapi/guide/tools/biz-token-sign
/*
* 通用 import 内容等暂略
*/
public static void main(String[] args) {
String url = "https://restwia.amap.com/api/v1/wia/map/icon/config/query";
BasicEnvConf env = getCurrentEnviroment();
Map<String, Object> params = new HashMap<>();
String key = "在高德开放平台申请的key";
String openId = "当前操作用户的openId";
String workMapId ="要操作的工作地图id";
String bizToken = "在高德开放平台申请的bizToken";
String bizSecret = "在高德开放平台申请的bizSecret";
params.put("key", key);
params.put("openId", openId);
params.put("workMapId", workMapId);
params.put("pageNumber", 1);
params.put("pageSize", 5);
params.put("iconFillerShowType", 1);
params.put("bizToken", bizToken);
String[] signArgs = new String[]{workMapId,openId};
params.put("bizSign", SignatureHelper.calcSign(bizSecret, signArgs));
url = MyHttpUtils.attachParamsToUrl(url, params);
String response = MyHttpUtils.postFormUrlencoded(url, null);
System.out.println(response);
}