Hello, I am working on a legacy application that connects to http://ajax.googleapis.com/ajax/services/search/local via PHP/Curl and passes a few parameters including:
'key' => (our google api key) 'q' => 'meadowlark gallery' 'sensor' => Browser::isMobileApp() ? 'true' : 'false', 'output' => 'json', 'v' => '1.0', 'rsz' => 'large', 'sll' => $location->lat . ',' . $location->lng Where do I find a complete list of parameters that are possible to use. At the moment, I am simply trying to get more results to come back for a simple maps query: http://maps.google.com search for: meadowlark gallery The web result returns 4+ matches. The API returns only the top two. -- You received this message because you are subscribed to the Google Groups "Google AJAX APIs" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-ajax-search-api?hl=en.
