fix(amap):core

This commit is contained in:
wang_yp 2024-10-15 18:04:57 +08:00
parent 3fd8831503
commit 9b9a3a7f9e
1 changed files with 22 additions and 23 deletions

View File

@ -26,30 +26,29 @@ export default function MapContainer() {
mapStyle: "amap://styles/darkblue", mapStyle: "amap://styles/darkblue",
resizeEnable: true, resizeEnable: true,
}); });
// const district = new Amap.DistrictSearch({ const district = new Amap.DistrictSearch({
// subdistrict: 3, //返回下一级行政区 subdistrict: 3, //返回下一级行政区
// extensions: "all", //返回行政区边界坐标组等具体信息 extensions: "all", //返回行政区边界坐标组等具体信息
// level: "street", //查询行政级别为 市 level: "street", //查询行政级别为 市
// }); });
// district.search("510116", function (status,result){ district.search("510116", function (status,result){
// console.log(result); if(status === "complete"){
// if(status === "complete"){ const bundler = result.districtList[0].boundaries;
// const bundler = result.districtList[0].boundaries; const polygon = new Amap.Polygon({
// const polygon = new Amap.Polygon({ map: amap,
// map: amap, path: bundler,
// path: bundler, strokeColor: "#ef9363", //线颜色
// strokeColor: "#fff", //线颜色 strokeOpacity: 0.8, //线透明度
// strokeOpacity: 1, //线透明度 strokeWeight: 2, //线宽
// strokeWeight: 3, //线宽 fillColor: "#ef9363", //填充色
// fillColor: "#fff", //填充色 fillOpacity: 0.3, //填充透明度
// fillOpacity: 0.4, //填充透明度 });
// }); amap.add(polygon)
// // amap.add(polygon) amap.setFitView();
// amap.setFitView(); }
// } })
// })
// setmaps(amap); setmaps(amap);
// addMaket(Amap,amap); // addMaket(Amap,amap);
MapUtl.loadMap = Amap; MapUtl.loadMap = Amap;
MapUtl.amap = amap; MapUtl.amap = amap;