我使用Yandex API计算从a点到B点的旅行距离和价格。在我的示例中,您可以通过在地图的不同部分单击2次来尝试自己:http://jsfiddle.net/EveGeen/wor9afo0/
ymaps.route([start, finish]).then(function (router) {
var distance = Math.round(router.getLength() / 1000),
message = '<span>Distance: ' + distance + 'km.</span><br/>' +
'<span style="font-weight: bold; font-style: italic">Price: %sр.</span>';
self._route = router.getPaths();
self._route.options.set({ strokeWidth: 5, strokeColor: '0000ffff', opacity: 0.5 });
self._map.geoObjects.add(self._route);
self._start.properties.set('balloonContentBody', startBalloon + message.replace('%s', self.calculate(distance)));
self._finish.properties.set('balloonContentBody', finishBalloon + message.replace('%s', self.calculate(distance)));
});
你会看到,在设置了A、B之后,你可以按下这些字母中的任何一个,它会显示距离和价格。
我如何将这两个值(距离和价格,第127-128行)传递到顶部的两个输入中?我只需要数字而不需要文字。
向输入元素添加id:
<label>Distance:</label>
<input id="dist" type="text" size="40" name="dist">
<br>
<label>Price:</label>
<input id="price" type="text" size="40" name="price">
并将其添加到route
事件中,以这种方式设置其值:
document.getElementById("dist").value = distance; // distance here
document.getElementById("price").value = self.calculate(distance);// price here
您需要设置route
事件中输入元素的值:
ymaps.route([start, finish])
.then(function (router) {
var distance = Math.round(router.getLength() / 1000),
message = '<span>Distance: ' + distance + 'km.</span><br/>' +
'<span style="font-weight: bold; font-style: italic">Price: %sр.</span>';
self._route = router.getPaths();
self._route.options.set({
strokeWidth: 5,
strokeColor: '0000ffff',
opacity: 0.5
});
self._map.geoObjects.add(self._route);
self._start.properties.set('balloonContentBody', startBalloon + message.replace('%s', self.calculate(distance)));
self._finish.properties.set('balloonContentBody', finishBalloon + message.replace('%s', self.calculate(distance)));
document.getElementById("dist").value = distance; // distance here
document.getElementById("price").value = self.calculate(distance);// price here
});
工作演示:
更新的FIDDLE
document.querySelectorAll("input[name='dist']")[0].value = distance; // distance
document.querySelectorAll("input[name='price']")[0].value = self.calculate(distance) // price