update 高德地图

This commit is contained in:
Lemon
2023-06-27 14:20:14 +08:00
parent f4a332aa58
commit 16128b10bb
3 changed files with 15 additions and 9 deletions

View File

@@ -72,6 +72,7 @@ import java.nio.charset.StandardCharsets;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
import java.util.concurrent.ExecutionException;
@ActiveProfiles("dev")
@SpringBootTest(classes = JsowellApplication.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@@ -173,9 +174,14 @@ public class SpringBootTestController {
@Test
public void testGetPileListByStationIdList() {
List<String> stationIdList = Lists.newArrayList("2");
Map<String, List<AMapEquipmentInfo>> pileListByStationIdList = aMapService.getPileListByStationIdList(stationIdList);
System.out.println(pileListByStationIdList);
// List<String> stationIdList = Lists.newArrayList("2");
// Map<String, List<AMapEquipmentInfo>> pileListByStationIdList = aMapService.getPileListByStationIdList(stationIdList);
// System.out.println(pileListByStationIdList);
GetStationInfoDTO dto = new GetStationInfoDTO();
dto.setType("page");
aMapService.getStationInfosV2(dto);
}
@Test