소스 검색

📦 修改地图拉取数量

快乐的梦鱼 2 주 전
부모
커밋
75af9fe2da
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/pages/components/LightMap.vue

+ 1 - 1
src/pages/components/LightMap.vue

@@ -76,7 +76,7 @@ const mapLoader = useSimpleDataLoader<MapMarker[]>(async () => {
   villageData.clear();
 
   await waitTimeOut(200);
-  const res = (await LightVillageApi.getVillageList(undefined, selectedRegion.value, undefined, 1, 100)).map((p, i) => {
+  const res = (await LightVillageApi.getVillageList(undefined, selectedRegion.value, undefined, 1, 100000000000)).map((p, i) => {
     villageData.set(p.id, p);
     const maker : MapMarker = {
       id: p.id ?? i,