This is a lightweight Java wrapper of the Google Places API supporting common query actions including search, detail, and autocomplete.
GooglePlaces places = new GooglePlaces( "API_KEY" );
PlacesResult result = places.searchNearby( 40.10744f, -88.22724f, 5000, PlacesQueryOptions.create( ).keyword( "siebel center" ) );
System.out.println( result.getStatus( ) );
for ( Place place : result )
System.out.println( place.getName( ) + " " + place.getGeometry( ).getLocation( ) );
GooglePlaces places = new GooglePlaces( "API_KEY" );
PlacesResult result = places.searchText( "Pizza in Champaign, IL" );
System.out.println( result.getStatus( ) );
for ( Place place : result )
System.out.println( place.getName( ) + ", " + place.getFormattedAddress( ) );
GooglePlaces places = new GooglePlaces( "API_KEY" );
PlaceDetailResult result = places.detail( place.getPlaceId( ) );
GooglePlaces places = new GooglePlaces( "API_KEY" );
AutocompleteResult result = places.autocomplete( "Siebel Ce" );
for ( Prediction p : result )
System.out.println( p.getDescription( ) );
See the LICENSE file for rights and limitations under the terms of the MIT license.
Source is hosted on GitHub.