我正在使用google-service-api(java)来获取路线,但我使用的是lat long而不是位置名称,这将适用于原点和目的地,但是对于航点而言,它要求字符串数组(位置名称)。有没有办法在航点上使用lat long而不是位置名称?
我正在创建这样的请求,
DirectionsApi.newRequest(context).mode(TravelMode.DRIVING).origin(start).destination(end).waypoints(//String array).await();
答案 0 :(得分:1)
我们可以通过提供lat来创建google latLng对象,然后我们必须使用toString方法将其更改为字符串,之后我们可以将该字符串直接传递给waypoints()method.it' ll work.we don& #39; t必须反转地理编码。