我想检索操作员将以表格形式输入的地址的GPS坐标,而不是当前的字母地址 我目前正在为这里的示例而奋斗,我对其进行了一些修改以使其不再具有地图。 http://komoot.github.io/typeahead-address-photon/
谢谢
<script>
var engine = new PhotonAddressEngine({
url: 'https://photon.komoot.de',
lang: 'fr',
lat: 48.847547,
lon: 2.351074,
});
function showSelected(event, selected) {
$('#inpAddress').val(selected.description);
//alert(selected.description);
}
engine.bindDefaultTypeaheadEvent($('#inpAddress'));
$(engine).bind('addresspicker:selected', showSelected);
$('#inpAddress').typeahead({
hint: true,
highlight: true,
minLength: 3
},
{
source: engine.ttAdapter(),
displayKey: 'description'
});
</script>
selected.description例如48.84,2.35