Marker Manager doesnt work in Maps API 3.10 [closed]-Collection of common programming errors

  1. Marker Manager is not compatible with Google Maps API v 3.10 and above. Either specify the version when including Google Maps or change line 98 in markermanager.js (version 1.0) from

    if (typeof map.mapTypes.get(sType) === 'object' && typeof map.mapTypes.get(sType).maxZoom === 'number') {
    

    to

    if (sType != "constructor" && typeof map.mapTypes.get(sType) === 'object' && typeof map.mapTypes.get(sType).maxZoom === 'number') {
    

Originally posted 2013-11-09 22:30:32.