Маркер Google Maps V3 с меткой

Как я могу добавить метку к своему маркеру, если мои маркеры заполняются при успешном выполнении ajax каждого результата.

map.gmap('addMarker', { 'position': new google.maps.LatLng(result.latitude, result.longitude) });

Я пытался так, но безуспешно

map.gmap('addMarker', { 
    'position': new google.maps.LatLng(result.latitude, result.longitude), 
    'bounds': true,
    'icon': markerIcon,
    'labelContent': 'A',
    'labelAnchor': new google.maps.Point(result.latitude, result.longitude),
    'labelClass': 'labels', // the CSS class for the label
    'labelInBackground': false
});

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

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