Google Maps API v3 - GIcon не определен

Я знаю, что есть проблемы с v2 до v3, что я могу сделать, чтобы исправить это?
GIcon не поддерживается v3?

// 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);

нашел отсюдаhttps: //developers.google.com/maps/documentation/javascript/overlays гектолитров = де-DE # SimpleIcons

Спасибо за любую помощь или советы!

Ответы на вопрос(1)

Ваш ответ на вопрос