如何通过网址中的@path发送经纬度和经度?

时间:2019-06-10 06:49:30

标签: post path latitude-longitude

我想通过GET中的@path设置纬度和经度,但出现此错误|: java.lang.IllegalArgumentException:URL查询字符串“ format = jsonv2&lat = {latitute}&lon = {longitute}”必须没有替换块。对于动态查询参数,请使用@Query。

@GET("{url}/reverse?format=jsonv2&lat={latitute}&lon={longitute}")
fun getGetAddress(@Path(value="url", encoded = true) url:String, 
@Path("latitute") latitute: Double, @Path("longitute") longitute: 
Double): Observable<LocationItems>

0 个答案:

没有答案