如何将 Here Maps Api 集成到 Spring 引导?

How to integrate Here Maps Api to Spring boot?

我正在设置一个新服务器,并想使用 Here API。有办法吗?

服务器是使用 Spring 引导开发的,我正在使用 Here API 进行地图、地理编码和自动完成。

spring 启动没有不同的方法。您可以简单地使用 RestTemplate 调用 API ,如下所示。希望这对您有所帮助!

package hello;

import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.client.RestTemplate;

@RestController
public class HelloController {

    @RequestMapping("/")
    public String index() {
        //you can replace this with any Here API you need
        final String uri = "https://autocomplete.geocoder.api.here.com/6.2/suggest.json"
                + "?app_id=xxxx"
                + "&app_code=xxxx"
                + "&beginHighlight=%3Cb%3E"
                + "&endHighlight=%3C/b%3E"
                + "&maxresults=20"
                + "&query=India&gen=9";

        RestTemplate restTemplate = new RestTemplate();
        String result = restTemplate.getForObject(uri, String.class);

        return result;
    }

}