GithubHelp home page GithubHelp logo

Comments (5)

Diones avatar Diones commented on June 2, 2024 1

try:

controller:

$scope.autolocation = { 
     model: null
}

$scope.$watch('autolocation.model', function(newValue, oldValue){
       console.log(angular.toJson(newValue, true));
       console.log("changed location!");
});

html:

<input type="search" g-places-autocomplete ng-model="autolocation.model">

But it will trigger on each change made on search input.

If you want to receive when a new location is selected, you could use:

$scope.$on('g-places-autocomplete:select', function(event, place) {
            $log.warn('new location: ' + JSON.stringify(place))
});

from angular-google-places-autocomplete.

jeefave avatar jeefave commented on June 2, 2024

try to add watch collection (3rd argument -> true)?

$scope.$watch('autolocation', function(){
    console.log("changed location!");
}, true)

from angular-google-places-autocomplete.

iBasit avatar iBasit commented on June 2, 2024

How can I capture user typing keywords with $watch? sometime address can't be found, but I still need to catch the input text value..

the above $watch only works if user location is selected.

from angular-google-places-autocomplete.

TakesTheBiscuit avatar TakesTheBiscuit commented on June 2, 2024

No you need to watch the input model in my opinion. I know this is an old thread, but then i suppose this repo is mothballed.

Put the watch into the controller which holds your input


app.controller('ctrl1', function($scope, modals, $http,  $rootScope) {

    $scope.$watch('placeCol', function() {
        console.log('form placeCol has been changed!');
        console.log($scope.placeCol);
    }, true);

}));

Where HTML is:
<div ng-controller="ctrl1"><input class="form-control" g-places-autocomplete ng-model="placeCol"/></div>

That should sort you out.

from angular-google-places-autocomplete.

amitpatil321 avatar amitpatil321 commented on June 2, 2024

@Diones Both of your solutions worked great, for the first solution i had to make small correction like below
if(typeof newValue == "object"){ this will prevent trigger on each change made on search input

from angular-google-places-autocomplete.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.