我需要在我的应用程序中使用webservices,我找到的解决方案之一是google directions API,以便生成从一个方向到另一个方向的路由,然后将其存储到表中。
我查看了谷歌方向api文档,但只说了如何使用它。我想知道我需要做什么才能在我的项目中实现它。
答案 0 :(得分:1)
documentation告诉您必须发出简单的HTTP请求才能使用Google Directions API。
向
发送请求https://maps.googleapis.com/maps/api/directions/json?origin=bern&destination=zurich
使用这样的网络客户端:
var url = "https://maps.googleapis.com/maps/api/directions/json?origin=bern&destination=zurich";
var client = new WebClient();
var content = client.DownloadString(url);