Решено :) Добавила следующую функцию в onSuccess. Может быть кому-то будет полезным
var geocoder = new google.maps.Geocoder();
geocoder.geocode({'location': pos},
function(results, status){
if(status == google.maps.GeocoderStatus.OK) {
var popOpts = {
content : results[1].formatted_address,
position : pos
};
var popup = new google.maps.InfoWindow(popOpts);
google.maps.event.addListener(marker, 'setTimeout', setTimeout (function() {
popup.open(map, marker)}, 200));
}
else {
alert('Geocoder failed due to: ' + status);
}
});