I\'ve been working on a Google Maps API 3 application on Android using PhoneGap. It should track the users location and mark the location with a marker and a circle around
I had the same issue, try to set the optimized: false property to the marker:
optimized: false
new google.maps.Marker({ map: map, optimized: false, clickable: true });
this should fix it!