Google Maps API v3 in PhoneGap: markers not drawing properly after move

后端 未结 1 1201
半阙折子戏
半阙折子戏 2020-12-10 19:47

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

相关标签:
1条回答
  • 2020-12-10 20:02

    I had the same issue, try to set the optimized: false property to the marker:

    new google.maps.Marker({
      map: map,
      optimized: false, 
      clickable: true
    });
    

    this should fix it!

    0 讨论(0)
提交回复
热议问题