Показать сообщение отдельно
  #5 (permalink)  
Старый 28.04.2016, 21:18
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,109

drpozitiff,
может так?
<input type="text" id="address"  value="Хмельницьке шосе, 13">

function geocodeAddress(geocoder, resultsMap) {
    var address = document.getElementById('address').value;
    var infowindow = new google.maps.InfoWindow({
            content: address
    });
    geocoder.geocode({'address': address}, function(results, status) {
    if (status === google.maps.GeocoderStatus.OK) {
        resultsMap.setCenter(results[0].geometry.location);
        marker = new google.maps.Marker({
            map: resultsMap,
            position: results[0].geometry.location,
            title: address,
            draggable: false
        });
       infowindow.open(resultsMap, marker);


    } else {
      alert('Geocode was not successful for the following reason: ' + status);
    }
  });
}
Ответить с цитированием