一、載入問題 用高德地圖做了個進京證路線規劃的功能,官網也是有 React 代碼示例。但是吧,這個Demo有問題,地圖是能載入成功,但是其他功能再用 map 這個變數肯定不行,果不其然是null,處理也簡單,把公共變數都管理起來就行了。 const [map, setMap] = useState( ...
一、載入問題
用高德地圖做了個進京證路線規劃的功能,官網也是有 React 代碼示例。但是吧,這個Demo有問題,地圖是能載入成功,但是其他功能再用 map 這個變數肯定不行,果不其然是null,處理也簡單,把公共變數都管理起來就行了。
const [map, setMap] = useState(null);
const [AMap, setAMap] = useState(null);
const [driving, setDriving] = useState(null);
const [mass, setMass] = useState(true);
useEffect(() => {
window._AMapSecurityConfig = {
securityJsCode: "「你申請的安全密鑰」",
};
AMapLoader.reset();
AMapLoader.load({
key: "", // 申請好的Web端開發者Key,首次調用 load 時必填
version: "2.0", // 指定要載入的 JSAPI 的版本,預設時預設為 1.4.15
plugins: ["AMap.Driving"], //需要使用的的插件列表,如比例尺'AMap.Scale',支持添加多個如:['...','...']
}).then((_AMap) => {
const _map = new _AMap.Map("container", {
resizeEnable: true,
viewMode: '2D', // 預設使用 2D 模式,如果希望使用帶有俯仰角的 3D 模式,請設置 viewMode: '3D'
zoom: 11, // 初始化地圖層級
center: [116.397428, 39.93000] // 初始化地圖中心點
});
_map.on('complete', () => {
setAMap(_AMap)
});
setMap(_map);
const driving = new _AMap.Driving({
map: _map
});
setDriving(driving);
}).catch((e) => {
console.log(e);
});
return () => {
map?.destroy();
};
}, [])
二、標註點問題
普通點標記多了會很慢,高德提供了海量點標記功能(攝像頭太多了),如果文字都顯示是又慢又亂,所有單獨綁定單擊事件,並用 Text 文本標記。
const camera = []; //你的數組
const datas = [];
const styles = [{
url: 'https://a.amap.com/jsapi_demos/static/demo-center/icons/poi-marker-default.png',
anchor: 'bottom-center',
size: new AMap.Size(21, 27),
zIndex: 1,
}]
for (let index = 0; index < camera.length; index++) {
const c = camera[index];
datas.push({
lnglat: c.position,
name: c.name,
style: 0 //該數據的取值為樣式數組對應的對象索引
});
}
// 海量標記攝像頭
const _mass = new AMap.MassMarks(datas, {
style: styles
})
let marker = null;
_mass.on('click', (e) => {
if (marker === null || e.data.lnglat !== marker._opts.position) {
if (marker !== null) {
map.remove(marker)
}
marker = new AMap.Text({
map: map,
position: e.data.lnglat,
anchor: 'top-center',
offset: [0, -60],
text: e.data.name,
style: {
"font-Size": "14px",
"padding": "5px"
},
zIndex: 2
});
}
});
_mass.setMap(map)
setMass(_mass);
三、效率問題
目前規劃路線的效率有點慢,主要是攝像頭過多,按步全量迴圈算路太耗時,下一步更新要把所有的攝像頭分區,按線路走向過濾算路,理論上能減少一半以上的計算時間,期待的搓搓小手。大家感興趣的可以在微信公眾號體驗一下,希望可以幫助到有需要的人。
測試簽名