Examples of Places


Examples of solysombra.shared.places.Places

 
  public Places getPlaces(Double lat, Double lon, String types, String name) {
    String uri = "https://maps.googleapis.com/maps/api/place/nearbysearch/json?location="+ lat + "," + lon +"&radius=5000&types="+types+"&name="+name+"&sensor=false&key="+PLACES_API_KEY;
    System.out.println(uri);
    ClientResource cr = new ClientResource(uri);
    Places places = cr.get(Places.class);
    return places;
 
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.