Google Maps marker clicks do not work on iPad when using Sencha Touch -
has been able map marker clicks working on ipad? have tried following, worked nicely on google chrome, not on ipad.
// marker var marker = new google.maps.marker({ position: location, title: 'title', map: map, icon: '/images/marker.gif' }); // click listener google.maps.event.addlistener(marker, 'click', function() { ... });
the problem was listening on "click" events when should have been listening on "mousedown" events.
Comments
Post a Comment