<script type="text/javascript"> var myMap, route; // Как только будет загружен API и готов DOM, выполняем инициализацию ymaps.ready(init); function init () { myMap = new ymaps.Map("map", { center: [58.0157, 56.2398], zoom: 12 }); $('#search_route').submit(function () { var start = $("#start").val(); var end = $("#end").val(); ymaps.route([start, end], { mapStateAutoApply: true, }) .then(function (router) { route && myMap.geoObjects.remove(route); route = router; myMap.geoObjects.add(route); $("#resmarshrut").append('Общая длина маршрута: '+route.getHumanLength()); $("#resmarshrut").append('<br /> Время в пути: '+route.getHumanTime()); }, function (error) { alert("Возникла ошибка: возможно вы неверно указали адрес" + error.message); }); return false; }); } </script>
<form id="search_route"> <input id="start" style="display: none;" type="text" value="Пермь, Ленина 80" style="width: 360px;"><br /> <input id="end" type="text" value="пушкина 108" style="width: 260px;"> <input type="submit" value="Найти"/> </form>
Не могу найти как сделать чтоб поиск адреса шел, в данном случае, только по Перми.