forked from biubiubiu01/vue3-bigData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
84 lines (78 loc) · 2.12 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/**
* 函数防抖
* @param {Function} func 包装的函数
* @param {num} delay 延迟时间
* @param {boolean} immediate 第一次滚动会执行两次 开始滚动和结束滚动的时候
* @return {*}
*/
export function debounce(func, delay, immediate = false) {
let timer,
context = this;
return (...args) => {
if (immediate) {
func.apply(context, args);
immediate = false;
return;
}
clearTimeout(timer);
timer = setTimeout(() => {
func.apply(context, args);
}, delay);
};
}
/**
* 通过高德获取geoJson
* @param {string} abcode 行政区code
* @param {string} geoJson 上一次获取的geoJson数据
* @return {}
*/
export function getGeoJson(adcode, geoJson = []) {
return new Promise((resolve, reject) => {
AMapUI.loadUI(["geo/DistrictExplorer"], (DistrictExplorer) => {
var districtExplorer = new DistrictExplorer();
districtExplorer.loadAreaNode(adcode, function(error, areaNode) {
if (error) {
console.error(error);
reject(error);
return;
}
let Json = areaNode.getSubFeatures();
let mapJson = {
features: [],
};
if (Json.length === 0) {
Json = geoJson.features.filter(
(item) => item.properties.adcode == adcode
);
}
mapJson.features = Json;
resolve(mapJson);
});
});
});
}
/**
* 通过高德获取地图信息
* @param {string} abcode 行政区code
* @return {}
*/
export function getMapInfo(abcode) {
return new Promise((resolve, reject) => {
var districtSearch = new AMap.DistrictSearch()
districtSearch.search(abcode.value, function(status, result) {
if (status != "complete") {
reject(new Error("获取地图数据失败"));
return;
}
const data = result.districtList[0];
if (
(data.level === "district" &&
data.districtList[0].level === "street") ||
!data.districtList
) {
resolve([data]);
}
resolve(data.districtList);
});
});
}