psfdek,
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Region code biasing (US)</title>
<style>
html, body, #map-canvas {
height: 100%;
margin: 0px;
padding: 0px
}
div ~ a{
display: inline-block;
cursor: pointer;
margin: 0 15px;
background: #FFCC99 ;
padding: 4px 8px;
}
div ~ a:hover{
background: #CCCCCC
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
<script>
var geocoder;
var map;
var query = new Array('Челябинск, ул. Кирова, д. 149', 'Челябинск, ул. Кирова, д. 86', 'Челябинск, ул. Кирова, д. 112');
var idArr = new Array('mp0','mp1','mp2');
function initialize() {
geocoder = new google.maps.Geocoder();
var mapOptions = {
zoom: 15
}
map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
codeAddress();
}
function codeAddress() {
for (var i = 0; i < query.length; i++) {
var address = query[i];
geocoder.geocode({
'address': address
}, function(k) {
return function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
var a = document.getElementById(idArr[k]);
a.onclick = function() {
map.setZoom(17);
map.setCenter(results[0].geometry.location);
}
map.setCenter(results[0].geometry.location);
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});
} else {
alert('Geocode was not successful for the following reason: ' + status);
}
}
}(i)
);
}
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div id="map-canvas" style="width: 600px; height: 400px"></div>
<a href="#" id="mp0">ссылка 1</a>
<a href="#" id="mp1">ссылка 2</a>
<a href="#" id="mp2">ссылка 3</a>
</body>
</html>