Answer the question
In order to leave comments, you need to log in
How to display a Google Map marker in the wrong address. what about coordinates?
Good morning. There is a code:
var geocoder;
var map;
var query = new Array('Набережные Челны, ул. Ш. Усманова 56а','Нижнекамск, ул Баки Урманче 15','Россия, Республика Татарстан, Набережные Челны, проспект Мира, 50/15');
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);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question