На сайте был google map но последнее время перестал работать. Возможно ли с теми же переменными сделать Яндекс. карты чтоб при нажатии на кнопку показать карту загружалась карта с меткой адреса если указан адрес? Вот старый код для google
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false&language=ru"></script> <script type="text/javascript"> var geocoder; var map; function initialize() { geocoder = new google.maps.Geocoder(); var latlng = new google.maps.LatLng(46.7, 25.1); var mapOptions = { zoom: 17, center: latlng, mapTypeId: google.maps.MapTypeId.ROADMAP } map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions); } function codeAddress() { google.maps.event.trigger(map, 'resize'); var address = document.getElementById("address").value; geocoder.geocode( { 'address': address}, function(results, status) { if (status == google.maps.GeocoderStatus.OK) { map.setCenter(results[0].geometry.location); var marker = new google.maps.Marker({ map: map, position: results[0].geometry.location, title: '<strong><?=$ads['title']?></strong><br/><?=@$ads['gmaps'] ?>' }); } else { alert("Geocode was not successful for the following reason: " + status); } }); } </script>