android - Open Maps app showing sites near a lat-lon? -


is possible open google maps (android app or web site) displaying sites near location?

i'm asking intent open googlemaps app display sites near location, not request sites google, forces app procees , display self.

thanks

yes possible , here backend api that

stringbuilder sb = new stringbuilder(                                 "https://maps.googleapis.com/maps/api/place/nearbysearch/json?");                         sb.append("location=" + mlatitude + "," + mlongitude);                         sb.append("&radius=5000");                         sb.append("&types=" + type);                         sb.append("&sensor=true");                         sb.append("your api key"); 

Popular posts from this blog