首先我确定你是已经直到了高德开发平台的。如果没有就指个路。
高德开发平台网站,点进去之后,我们来获取到自己的key。
1.点击应用管理,选择我的应用
2.创建一个自己的应用。
3.添加key
注意:这里的web端有两个选择,其中Web端(JS API)的选项,其申请之后能够使用的功能较少。
在此,我是用的是第二个——Web服务。
创建好之后,就可以看到如下的画面
这样就可以使用这个key了。
然后使用官方给出的文档来调用他们的api:
这里我们使用地理编码的功能。
下面给出我的程序
import org.apache.http.HttpEntity;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;
import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.IOException;
import java.net.URLEncoder;
public class GeoCodingService {
// 定义高德地图API的URL模板
private static final String API_URL = "https://restapi.amap.com/v3/geocode/geo?address=%s&key=%s";
// 主方法,用于测试GeoCodingService的功能
public static void main(String[] args) {
String address = "湖南省"; // 测试地址
String key = "YOUR_API_KEY"; // 替换为你的高德地图API Key
String location = getCoordinates(address, key); // 获取地址的坐标
if (location != null) {
displayMap(location); // 如果获取到坐标,则显示地图
} else {
System.out.println("无法获取坐标"); // 如果未获取到坐标,则输出错误信息
}
}
// 根据地址和API Key获取坐标
public static String getCoordinates(String address, String key) {
try {
String encodedAddress = URLEncoder.encode(address, "UTF-8"); // 对地址进行URL编码
String url = String.format(API_URL, encodedAddress, key); // 构建完整的API请求URL
try (CloseableHttpClient httpClient = HttpClients.createDefault()) { // 创建HTTP客户端
HttpGet request = new HttpGet(url); // 创建HTTP GET请求
try (CloseableHttpResponse response = httpClient.execute(request)) { // 执行HTTP请求
HttpEntity entity = response.getEntity(); // 获取响应实体
if (entity != null) {
String result = EntityUtils.toString(entity); // 将响应实体转换为字符串
System.out.println("Response: " + result); // 打印完整响应
JsonObject jsonObject = JsonParser.parseString(result).getAsJsonObject(); // 解析JSON响应
if (jsonObject.get("status").getAsString().equals("1")) { // 检查API调用是否成功
String location = jsonObject.getAsJsonArray("geocodes").get(0).getAsJsonObject().get("location").getAsString(); // 获取坐标信息
return location; // 返回坐标信息
} else {
System.out.println("Error: " + jsonObject.get("info").getAsString()); // 打印错误信息
}
}
}
}
} catch (Exception e) {
e.printStackTrace(); // 打印异常堆栈信息
}
return null; // 如果发生异常或未获取到坐标,则返回null
}
// 根据坐标显示地图
public static void displayMap(String location) {
// 构建HTML内容,用于在网页上显示地图
String htmlContent = "<!DOCTYPE html>\n" +
"<html>\n" +
"<head>\n" +
" <meta charset=\"utf-8\">\n" +
" <title>高德地图显示</title>\n" +
" <style>\n" +
" #container {\n" +
" width: 100%;\n" +
" height: 600px;\n" +
" }\n" +
" </style>\n" +
" <script type=\"text/javascript\" src=\"https://webapi.amap.com/maps?v=1.4.15&key=YOUR_API_KEY\"></script>\n" +
" <script type=\"text/javascript\">\n" +
" window.onload = function() {\n" +
" var map = new AMap.Map('container', {\n" +
" zoom: 13,\n" +
" center: [" + location + "]\n" +
" });\n" +
" };\n" +
" </script>\n" +
"</head>\n" +
"<body>\n" +
" <div id=\"container\"></div>\n" +
"</body>\n" +
"</html>";
// 保存HTML内容到文件
try (BufferedWriter writer = new BufferedWriter(new FileWriter("map.html"))) {
writer.write(htmlContent); // 将HTML内容写入文件
System.out.println("地图 HTML 已保存为 map.html"); // 打印成功信息
} catch (IOException e) {
e.printStackTrace(); // 打印异常堆栈信息
}
}
}
还有mavende 的配置
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>maker_test</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<dependencies>
<!-- Apache HttpClient -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.13</version>
</dependency>
<!-- Gson -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>
// 注意:一定要2.8.6以上的配置,否则的话JSON方面的一个类的方法会出错
</dependency>
</dependencies>
</project>
运行之后,控制台会输出返回给后端的信息。
并且会生成一个map.html的文档。可以点击用浏览器查看你输入的位置。