I have a google maps implementation with various dropped pins. When clicked they open a information Window with a simple string. This all works well and dandy in the Ionic serve
// Fix for Google AutoComplete Places Javascript API on iOS WORK and tested on iphone5/6/7
if (navigator.userAgent.match(/(iPad|iPhone|iPod)/g)) {
setTimeout(function () {
let container = document.getElementsByClassName('pac-container')[0];
// Fix for Google AutoComplete Places Javascript API on iOS
if (container) {
container.addEventListener('touchend', function (e) {
e.stopImmediatePropagation();
});
}
}, 500);
}