找到给定纬度和经度的速度限制的最有效方法
Most efficient way to find speed limit for a given latitude and longitude
我是 Here-API 的新手,已经苦苦挣扎了几天。我想实现类似 this but a bit cleaner. I do not want to plot the point on the map. All I want is to retrieve the speed limit. I have tried a couple of things like this, this 的目标。一个卑微的请求,请添加演示获取请求,而不仅仅是程序。
注意:我只有一个 API 密钥,我不是在寻找 android/ios 代码。只是一个演示 Get 请求应该没问题。我没有应用程序代码和应用程序 ID,因为我订阅了免费增值服务。
找出您想了解的内容的最简单方法是观察输入坐标并按下“加载”按钮时发生的情况。
使用 Chrome 浏览器,登录并转到页面。
Select 菜单 > 更多工具 > 开发者工具.
单击屏幕顶部的网络。
输入街道坐标并按 加载。
您在右侧看到的是查询和结果。您感兴趣的开头是:
https://reverse.geocoder.api.here.com/6.2/reversegeocode.json?
[继续]
查看该调用的 return 值以获得结果。其他查询用于图形显示,因此您不需要这些。
我是 Here-API 的新手,已经苦苦挣扎了几天。我想实现类似 this but a bit cleaner. I do not want to plot the point on the map. All I want is to retrieve the speed limit. I have tried a couple of things like this, this 的目标。一个卑微的请求,请添加演示获取请求,而不仅仅是程序。
注意:我只有一个 API 密钥,我不是在寻找 android/ios 代码。只是一个演示 Get 请求应该没问题。我没有应用程序代码和应用程序 ID,因为我订阅了免费增值服务。
找出您想了解的内容的最简单方法是观察输入坐标并按下“加载”按钮时发生的情况。
使用 Chrome 浏览器,登录并转到页面。
Select 菜单 > 更多工具 > 开发者工具.
单击屏幕顶部的网络。
输入街道坐标并按 加载。
您在右侧看到的是查询和结果。您感兴趣的开头是:
https://reverse.geocoder.api.here.com/6.2/reversegeocode.json?
[继续]
查看该调用的 return 值以获得结果。其他查询用于图形显示,因此您不需要这些。