ajax 和 xml 解析器
$.ajax({
url: 'http://geocode-maps.yandex.ru/1.x/?geocode=43.2491,76.9198&sco=latlong&kind=house&results=7',//here get the XML wirh all adresses and coords
type: 'GET',
dataType: 'html',
success: function(d){
$("#message").html('');
var coord = $(d).find('pos').text();
$(d).find('name').each(function(){
$('#message').prepend("<div class='addresses' onClick='insert_adress($(this).text());'>"+$(this).text()+" и "+coord+"</div>"); //here it write to a box
})
}
});