人口网格

This commit is contained in:
wzy-warehouse
2026-04-21 15:49:56 +08:00
parent 8863fafc69
commit d71112e1d3
12 changed files with 149 additions and 43 deletions
+9
View File
@@ -53,6 +53,14 @@ export const useLayerControl = () => {
useStatusStore().poiLayers.showReservePoint.loading = true;
};
/**
* 点击显示人口网格
*/
const clickPopulationGrid = () => {
// 加载状态为true
useStatusStore().poiLayers.showPopulationGrid.loading = true;
};
return {
clickHiddenDangerPoint,
clickHospital,
@@ -60,5 +68,6 @@ export const useLayerControl = () => {
clickEmergencyShelter,
clickFireStation,
clickStorePoints,
clickPopulationGrid,
};
};