5.
an.azarova
4
29.01.13 23:17
Сейчас в теме
На этой стр. произошла ошибка сценария
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html" />
<meta http-equiv="X-UA-Compatible" content="IE=7"/>
<script src="http://api-maps.yandex.ru/1.0/?key=ANpUFEkBAAAAf7jmJwMAHGZHrcKNDsbEqEVjEUtCmufxQMwAAAAAAAAAAAAvVrubVT4btztbduoIgTLAeFILaQ=="
type="text/javascript"></script>
<script type="text/javascript">
var map, geoResult;
window.onload = function () {
map = new YMaps.Map(document.getElementById("YMapsID"));
showAddress("115516, Москва г, Промышленная ул, дом № 11, строение 3, оф.419");
};
function showAddress (value) {
map.removeOverlay(geoResult);
var geocoder = new YMaps.Geocoder(value, {results: 1, boundedBy: map.getBounds()});
YMaps.Events.observe(geocoder, geocoder.Events.Load, function () {
if (this.length()) {
geoResult = this.get(0);
map.addOverlay(geoResult);
map.setBounds(geoResult.getBounds());
map.enableHotKeys();
map.enableScrollZoom();
}else {
alert("Ничего не найдено")
}
});
}
</script>
</head>
<body>
<form action="#" onsubmit="showAddress(this.address.value);return false;">
<p>
<input type="text" id="address" style="width:525px;" value="115516, Москва г, Промышленная ул, дом № 11, строение 3, оф.419" />
<input type="submit" value="Искать" />
</p>
</form>
<div id="YMapsID" style="height:600px; width:800px;"></div>
</body>
</html>