Questions tagged [geocomplete]

Geocomplete is an advanced jQuery plugin that wraps the Google Maps API's Geocoding and Places Autocomplete services

Geocomplete is an advanced jQuery plugin that wraps the Google Maps API's Geocoding and Places Autocomplete services. You simply provide an input that lets you search for locations with a nice autocomplete dropdown.


Documentation :

54 questions
4
votes
1 answer

Get details for selected establishment on Google Maps

There's quite a few questions on this, and documentation available, however it seems that I can't find the solution for the use case I'm trying to solve. What I'd like to do: Have a Google Map with a search box so a user can search for a location…
eskimo
  • 2,421
  • 5
  • 45
  • 81
3
votes
1 answer

geocomplete is not a function using autocomplete

Hi i am using autopopulated code getting the error geocomplete is not a function if is used it in locally (seperated file) it works for me what can be the error $(function () { $("#location").geocomplete({ //alert("gine"); …
Manish Jakhmola
  • 197
  • 1
  • 3
  • 12
3
votes
3 answers

Submitting geocomplete form on suggestion select

I'm fairly new to JS so I'm a bit confused as in why this is not working. Basically I'm using the geocomplete jQuery plugin to populate a form with the coordinates and address. Then, once a user selects the destination, I want to sumbit the form. …
Leo Starić
  • 331
  • 1
  • 4
  • 16
3
votes
2 answers

jQuery geocomplete street_address not working

I have been knocking my head to the walls today trying to get the field result from jQuery Geocomplete to display street_address but it looks the plugin is not rendering it as a data-geo="" onto my form field or anything else!. Bellow on my HTML i…
Ricardo Alves
  • 561
  • 1
  • 5
  • 21
2
votes
4 answers

geocomplete with Vue js -- location being erased

I'm trying to use jQuery geocomplete along with Vue.js to populate a form with geo data. My code contains this form:
David J.
  • 1,753
  • 13
  • 47
  • 96
2
votes
0 answers

TypeError: $(...).geocomplete is not a function

I'm building a JSF application which has multiple sections at any time on a page. Section 1 & 2 have same input fields (different IDs and class) to search for location of user. both fields use geocomplete When the page loads initially, everything…
2
votes
1 answer

Using the geocomplete to limit results to country and state

I'm using Geocomplete - jQuery Geocoding and Places Autocomplete Plugin and I'm trying to limit the results returned in the following way. I need: Country: Australia State: Queensland with the suggestions limited to: Post Code Suburb I can limit…
Mischa Colley
  • 123
  • 3
  • 13
2
votes
1 answer

clear or reset geocomplete control

I am looking for a way to clear the results of a geocomplete (version 1.5.0) control.I have tried the various ways that were mentioned here but to no avail. The idea is when the user clears the field after entering a biz name I would like to have…
2
votes
0 answers

Add additional items to jquery geocomplete

Is it possible to add additional items to jquery geocomplete list? http://ubilabs.github.io/geocomplete/ I use geocomplete jquery plugin in my search form which enable the users to search hotel by address. But I want in this autocomplete service to…
yancho
  • 21
  • 1
  • 3
1
vote
0 answers

Is it possible to catch async google API errors?

I use the geocomplete gem. It requires the Google API. When the count of requests are more then API limit I have the silent error: You have exceeded your daily request quota for this API. I tried to try catch it. But it looks like it is async - it…
Ivan Rostovsky
  • 614
  • 1
  • 8
  • 16
1
vote
1 answer

jQuery Geocomplete - Remove Google Signature

I am using jQuery Geocomplete Library. What I have done is this- $(function() { $("#find_product_location").geocomplete( { map : "#product_location", mapOptions : { mapTypeId : 'roadmap', //roadmap, satellite,hybrid,…
Abrar Jahin
  • 13,970
  • 24
  • 112
  • 161
1
vote
2 answers

Searching by Name Using Geocomplete Jquery Library

Using the Geocomplete Jquery Plugin for Google Maps (http://ubilabs.github.io/geocomplete/) I can successfully search for addresses in the Google Places API. However, does anyone know if it is possible to search for a named placed such as “Madison…
noahdotgansallo
  • 763
  • 1
  • 6
  • 15
1
vote
0 answers

use geocomplete to do a nearby search

I'm using geocomplete (a jQuery Geocoding and Places Autocomplete Plugin). What's the best way to do a nearby search? (e.g. search for addresses in a city) I know this can be done by specifying the 'location' or the 'bounds' for a map, e.g. …
user3711600
  • 853
  • 3
  • 12
  • 27
1
vote
1 answer

prevent geocomplete from returning street address from lat lng coordinates

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 + ', ' +…
Paul
  • 11,671
  • 32
  • 91
  • 143
1
vote
0 answers

jquery geocomplete retrieve street_number from result

I'm using this jQuery script: http://ubilabs.github.io/geocomplete/ I read the documentation but it's quite minimal. There are links to the original API but the syntax is different and I can't make something out of it. I would like to know how to…
Baylock
  • 1,246
  • 4
  • 25
  • 49
1
2 3 4