예제 #1
0
 /**
  * Returns the actual alternate place.
  *
  * @return alternate place object
  */
 public Place getPlace() {
   return client.getPlaceById(placeId);
 }
 /**
  * Returns the place this prediction is suggesting.
  *
  * @param extraParams to append to request URL
  * @return place
  */
 public Place getPlace(Param... extraParams) {
   return client.getPlaceById(placeId, extraParams);
 }