MarkerWithLabel stops working correctly

Suddenly yesterday, 3/4/2014, my MarkerWithLabel (Google Maps API app) shows only the last marker, but all the shortcuts are displayed. It worked fine. Google example: https://google-maps-utility-library-v3.googlecode.com/svn/tags/markerwithlabel/1.0.1/examples/basic.html does not work at all, and I based my code on this example, which worked very well.

In the link below, I put 2 markers with tags on the map. When both labels are displayed, only marker 2 is displayed. Changing the markers causes marker 2 to be displayed, but not marker 1. Both labels are displayed.

What has changed or what am I doing wrong?

You can see my problem first hand at http://qsomap.org/QSOmapProduction/labeltest.htm . This worked correctly 2 days ago.

+7
api maps
source share
1 answer

It seems that the latest Google Maps update has broken something on which the character code marker is based. The same thing happened with some of my cards. We will have to wait until a fix is ​​available.

The current solution is to install the google maps API version at 3.15 or lower: https://code.google.com/p/google-maps-utility-library-v3/issues/detail?id=296&sort=-id&colspec=ID%20Type% 20Status% 20Priority% 20Fixed% 20Owner% 20Summary% 20Stars

  • Using ... mapss.google.com/maps/api/js?sensor=false&v=3.15 works
  • Using ... maps.google.com/maps/api/js?sensor=false&v=3.16 goes wrong.
  • Using ... mapss.google.com/maps/api/js?sensor=false is also wrong.
+13
source share

All Articles