I am working on google places that would list local interest points from a particular location. but i am not able to set any particular location right now in link.
following link i am trying to use.
http://www.google.com/m/local/lstr=bryn+mawr
http://www.google.com/m/places/lstr=bryn+mawr
Please suggest any solution regarding this.
Take a look at the API. It makes it pretty clear what you have to include. See the required parameters:
Example: location=-33.8670522,151.1957362 — Your query does not have a location.
Example: radius=50 — Your query does not have a radius.
Optional, helps narrow down the right result if a name is being searched for.
Example: sensor=true — You have *true_or_false* which is in the example but isn’t valid. The last sentence in the description, above, notes that it must be true or false.
Example: client=1234567890 — You are using “clientId”, but you have to use the actual clientID of your app, as requested from Google and explained in the API reference.
Example: signature=1234567890 — You are using SIGNATURE but you have to supply a valid signature which is an encrypted URL using the private key you get from Google.