Back to project page reversegeo.
The source code is released under:
MIT License
If you think the Android project reversegeo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.zwenexsys.reverse; /* w w w . j a v a 2 s . co m*/ import com.zwenexsys.reverse.models.Maps; import retrofit.Callback; import retrofit.http.GET; import retrofit.http.Query; /** * Created by Ye Lin Aung on 14/11/02. */ public interface AsyncMapService { @GET("/json") void getResult( @Query("latlng") String latLng, Callback<Maps> maps ); }