Google Maps API v3 - GIcon ist nicht definiert

Ich weiß, dass es einige Probleme von v2 bis v3 gibt. Was kann ich hier tun, um das Problem zu beheben?
GIcon wird von v3 nicht unterstützt?

// Google-Map icon object
var gMapIcon = new GIcon(G_DEFAULT_ICON); //change to new google.maps.MarkerImage();???
// does icon exist
if ( mapElements[lMapElementIndex]['icon'].toString().length > 0) {
    gMapIcon.image = html_entity_decode(mapElements[lMapElementIndex]['icon']);
    gMapIcon.shadow = "";
    iconHeight = mapElements[lMapElementIndex]['iconheight'];
    iconWidth = mapElements[lMapElementIndex]['iconwidth'];
    gMapIcon.iconSize = new GSize(iconWidth,iconHeight);
    gMapIcon.iconAnchor = new GPoint(0,0);
    gMapIcon.infoWindowAnchor = new GPoint(15,10);
}
    var markerOptions = { 
        icon: gMapIcon //change to image? 
     };
    var marker = new google.maps.Marker(point,markerOptions);

von hier gefundenhttps://developers.google.com/maps/documentation/javascript/overlays?hl=de-DE#SimpleIcons

danke für jede hilfe oder tipps!

Antworten auf die Frage(1)

Ihre Antwort auf die Frage