答案 0 :(得分:1)
根据文档,有一个事件将结果插入到名为geocode:result
的表单中,您需要将其添加到代码中。
$("#input-geo").geocomplete().bind("click", function (e){
e.stopPropagation();
}).on("geocode:result", function(event, result){
$('#message').html('Your Location: ' + $('#input-geo').val());
});