geocompleteを使用してマップをロードしています。私の質問は、マップの境界を取得する方法はありますか?以前使っていた
var bounds = results[0].geometry.bounds;
境界を取得するためにここで機能していません、私のコードは以下に与えられています
$("#textfield").geocomplete({
map: ".map_canvas",
details: "form",
types: ["geocode", "establishment"]
})
.bind("geocode:result", function(event, result){
alert(result.geometry.bounds);
alert(result.bounds);
})
両方のアラートは、値として「未定義」を示します。