fix:修改部分页面适配,设置地图最大最小缩放等级

This commit is contained in:
2024-10-31 14:39:01 +08:00
parent 3b65a08f56
commit 95782c60fc
8 changed files with 224 additions and 85 deletions
+25 -20
View File
@@ -2,30 +2,35 @@ import request from "@/utils/request";
// 获取数据栏右上角选择数据接口
export function selectTypeList(query) {
return request({
url: "/bigscreen/getSwitch",
method: "get",
params: query,
});
}
return request({
url: "/bigscreen/getSwitch",
method: "get",
params: query,
});
}
// 获取地图打点数据接口
export function mapPointList(query) {
return request({
url: "/bigscreen/getMapPoint",
method: "get",
params: query,
});
}
return request({
url: "/bigscreen/getMapPoint",
method: "get",
params: query,
});
}
// 获取地图绘制线段数据接口
export function mapPciList(query) {
return request({
url: "/bigscreen/roadPci",
method: "get",
params: query,
});
}
return request({
url: "/bigscreen/roadPci",
method: "get",
params: query,
});
}
// 获取图片背景下地图坐标信息
export function comppanyImg() {
return request({
url: "/bigscreen/getCompanyInfo",
method: "get",
});
}