Google Maps Tokens Not Displaying in Chrome v27

Using Chrome v27.0.1453.93. Markers are not displayed using the latest google api map. Markers display in Safari and FF. Chrome development tools point to an error like “Unsubscribed type” on line 10 https://maps.gstatic.com/intl/en_us/mapfiles/api-3/13/2/main.js .

I removed the obsolete MarkerImage class, but it still throws a js error in Chrome.

It worked. The implemented URL is here .

Does anyone else see this?

Thanks in advance.

+2
source share
1 answer

I found a solution to this problem: add an optimized parameter: false when you create the marker. I do not know if there are other consequences with this parameter.

marker = new google.maps.Marker( optimized: false ) 
+8
source

Source: https://habr.com/ru/post/1482339/


All Articles