Skip to content

ksetyadi/googlegeocode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 

Repository files navigation

Google Geocode for Android

Instruction:

  1. Create new instance of GoogleGeocode.
  2. GoogleGeocode has two constructors. You can use either:
    • Lat and Lng; or
    • Address
  3. Assign the result as JSONObject object.
  4. If it's succeed, the result will be not null. Otherwise, null.

example:

    String lat = "-6.234567";
    String lng = "106.23123";
    
    GoogleGeocode geocode = new GoogleGeocode(lat, lng);
    JSONObject result = geocode.getReverseGeo();
    
    // you can check for the result here
    if (result != null) {
        // Success. result contains the information needed.
    } else {
        // failed.
    }

About

Google Geocode Wrapper for Android

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages