Skip to content

Instantly share code, notes, and snippets.

@schoenobates
Created November 16, 2014 22:51
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save schoenobates/ef578a02ac8ab6726487 to your computer and use it in GitHub Desktop.
Save schoenobates/ef578a02ac8ab6726487 to your computer and use it in GitHub Desktop.
Fix for Google AutoComplete Places Javascript API on iOS
var autoElm = document.getElementById('elm-name');
autocomplete = new google.maps.places.Autocomplete(autoElm);
google.maps.event.addListener(autocomplete, 'place_changed', function () {
var place = autocomplete.getPlace();
if (!place.geometry) {
return;
}
instance.setCenter(place.geometry.location);
instance.setZoom(19);
autoElm.value = '';
});
// need to stop prop of the touchend event
if (navigator.userAgent.match(/(iPad|iPhone|iPod)/g)) {
setTimeout(function() {
var container = document.getElementsByClassName('pac-container')[0];
container.addEventListener('touchend', function(e) {
e.stopImmediatePropagation();
});
}, 500);
}
@IOZ
Copy link

IOZ commented Jun 3, 2016

Thank you, it works.

@Superman2971
Copy link

Thank you for this great fix

@claudioviola
Copy link

I'm tring your fix but in the callback "place_changed" of autocomplete I don't receive the event.
I receive only the touchend event...

@iforgotbetter
Copy link

@claudioviola, having the same issue. Does not recognize the place_changed event on Chrome dev tools w/ user agent, on iOS 8.2 simulator Safari or iOS 9 device Chrome & Safari. However the auto complete test here: https://developers.google.com/maps/documentation/javascript/examples/places-autocomplete-addressform does work. I am looking into their code on that page too see what I can find.

@iforgotbetter
Copy link

iforgotbetter commented Dec 3, 2016

@claudioviola, my issue was with fastclick not allowing the touch event from autocomplete to call the place_changed. You have to add 'needsclick' class to the element, but you cant add after init of the autocomplete function. So I ended up using this solution http://stackoverflow.com/a/20056569 from Devin.

Although I just realized that Mutation Observer is not supported in LT IE 11.

@lightheaded
Copy link

I have tried adding "needsclick" class to .pac-items and .pac-item spans, tried adding stopImmediatePropagation() to touchend events. Absolutely nothing works. Has anybody solved the problem recently?

@shirishpickup
Copy link

Even i'm banging my head to fix this issue. Any help is super appreciated.

@balooval
Copy link

balooval commented Jul 6, 2017

Worked for me in context : cordova + ios.
Thank you !

@souvickcse
Copy link

souvickcse commented Jul 16, 2017

@schoenobates Thank You for your solution.
Using this solution I had one issue that as it is stoping the action, it is changing the text and closing the list after tapping, it only changes the value only when tapped outside. So I added few code to do that. Please find it below.

                           setTimeout(function() {
			        var container = document.getElementsByClassName('pac-container')[0];
			        console.log(container);
			        container.addEventListener('touchstart', function(e) {
			            e.stopImmediatePropagation();
			            setTimeout(function(){alert('j');document.activeElement.blur();},300);
			            
			        });
			    }, 500);

@schoenobates
Copy link
Author

Awesome - thanks @souvickcse

@MarinoRaul
Copy link

It s not working for me!!! Which is the correct solution? Thanks

@yugandhargangu
Copy link

It is not working for me.

const id = document.getElementById(_self.id);
_self.autocomplete = new google.maps.places.Autocomplete(document.getElementById(_self.id), {
types: [_self.type]
});
_self.autocomplete.addListener('place_changed', _self.fillInAddress);
setTimeout(function () {
const container = document.getElementsByClassName('pac-container')[0];
console.log(container);
container.addEventListener('touchstart', function (e) {
e.stopImmediatePropagation();
setTimeout(function () {
document.activeElement.blur();
}, 300);
});
}, 500);

@joydesigner
Copy link

ionic 3 does not work with native Google maps, anyone knows how to fix the issue?

@MarinoRaul
Copy link

Someone fix this issue in ionic 3?

Not working for me on iOS

@petreionescu
Copy link

Hello MarinoRaul,
Did you solve your issue and if so, what did you do ?

@zabaat
Copy link

zabaat commented Feb 11, 2019

@schoenobates Thank You for your solution.
Using this solution I had one issue that as it is stoping the action, it is changing the text and closing the list after tapping, it only changes the value only when tapped outside. So I added few code to do that. Please find it below.

                           setTimeout(function() {
			        var container = document.getElementsByClassName('pac-container')[0];
			        console.log(container);
			        container.addEventListener('touchstart', function(e) {
			            e.stopImmediatePropagation();
			            setTimeout(function(){alert('j');document.activeElement.blur();},300);
			            
			        });
			    }, 500);

worked for me ty. (just make sure to have it on the right page that has this element

@acbfaria23
Copy link

Hi, I am having the same issue. Tried the solutions above.
Does anybody has a different solution?

@CodeWithOz
Copy link

The original code worked for me:

// need to stop prop of the touchend event
if (navigator.userAgent.match(/(iPad|iPhone|iPod)/g)) {
    setTimeout(function() {
        var container = document.getElementsByClassName('pac-container')[0];
        container.addEventListener('touchend', function(e) {
            e.stopImmediatePropagation();
        });
    }, 500);
}

Thanks @schoenobates !

@fred2458
Copy link

Works perfect! Thanks man!! I fking love you

@RomanCzujko
Copy link

It working on PC but not working on Android Mobile https://romanczujko.github.io/PayForDistance/

google.maps.event.addDomListener(window, 'load', function () {
var from_places = new google.maps.places.Autocomplete(document.getElementById('from_places'));
var to_places = new google.maps.places.Autocomplete(document.getElementById('to_places'));

        google.maps.event.addListener(from_places, 'place_changed', function () {
            var from_place = from_places.getPlace();
            var from_address = from_place.formatted_address;
            $('#origin').val(from_address);
        });

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment