|
@@ -1,6 +1,8 @@
|
|
|
|
|
|
package com.ruoyi.common.core.baiduMap;
|
|
|
|
|
|
+import com.ruoyi.common.config.BaiduProperties;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
import org.springframework.web.util.UriUtils;
|
|
|
|
|
@@ -16,15 +18,19 @@ import java.util.Map;
|
|
|
*/
|
|
|
@Component
|
|
|
public class SearchHttpAK {
|
|
|
+ @Autowired
|
|
|
+ private BaiduProperties baiduProperties;
|
|
|
|
|
|
public static String URL = "https://api.map.baidu.com/reverse_geocoding/v3?";
|
|
|
|
|
|
- public static String AK = "bkclPNKHhZfdCXNoNVpvrFkYVVdvrzBG";
|
|
|
+// public static String AK = "bkclPNKHhZfdCXNoNVpvrFkYVVdvrzBG";
|
|
|
+
|
|
|
|
|
|
public String convertIp (String latitudeAndLongitude) throws Exception {
|
|
|
|
|
|
SearchHttpAK snCal = new SearchHttpAK();
|
|
|
|
|
|
+ String AK = baiduProperties.getAK();
|
|
|
Map<String, String> params = new LinkedHashMap<>();
|
|
|
params.put("ak", AK);
|
|
|
params.put("output", "json");
|