Guest User

Untitled

a guest
May 22nd, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. return $http.get('//maps.googleapis.com/maps/api/geocode/json', {
  2. params: {
  3. address: val,
  4. sensor: false
  5. }
  6. }).then(function(res){
  7. return [].concat(res.data.results);
  8. });
Add Comment
Please, Sign In to add comment