When I pass a lat and lng coordinate to geocomplete how do I prevent it from displaying the street portion of the address:
When I pass these coordinates to geocomplete:
var lat = '40.7127744'
var lng = '-74.006059';
var lat_and_long = lat + ', ' + lng ;
$("#location").geocomplete("find", lat_and_long);
it returns:
New York City Hall, City Hall Park, New York, NY 10007, USA
How do I restrict it to:
New York, NY, United States