всем добрый день.
<head>
<title>Карта</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="http://api-maps.yandex.ru
type="text/javascript"></script>
<script type="text/javascript">
ymaps.ready(function () {
var mymap,myGeoObject,coords,
myGeocoder = ymaps.geocode("Санкт-Петербург");
myGeocoder.then(
function (res) {
mymap = new ymaps.Map("YMapsID", {
center: [59.94920514082103,30.328096740839832],
zoom: 10});
mymap.geoObjects.add(res.geoObjects);
},
function (err) {}
);
})
</script>
</head>
<body>
<label> </label><input id="latlongmet" class="input-medium" name="icon_text" style="width:300px;height:20px"/>
<div id="YMapsID" style="width:1000px;height:600px"></div>
</form>
</body>
</html>