从Angularjs中的多个Google地点自动填充中获取选定的地点数据

时间:2016-08-30 08:32:06

标签: angularjs autocomplete google-places-api

我有多个输入字段用于在单个页面中获取位置。我使用$ scope.on()事件在我的控制器中获取g-places-autocomplete选定的数据。

 $scope.$on('g-places-autocomplete:select', function (event, place) {
    console.log(place.formatted_address);
});

HTML:

<input ng-model="locationGo" type="text" g-places-autocomplete>
<input ng-model="locationTop" type="text" g-places-autocomplete>

我从两个输入字段中选择了位置,但我想知道选择了哪个输入字段。

0 个答案:

没有答案