I did put this inside a plunker and it worked like a charm:

<html>
  <head>
    <script src=
"https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.5/angular.js";
></script>
  </head>
  <body>
    <div ng-app="myApp" ng-controller="myController">
      <ul>
        <li ng-repeat="record in records">
         {{record.long_name}}
     </li>
      </ul>
    </div>
    <script>
    var app=angular.module("myApp",[]);
    app.controller("myController",function($scope,$http){
        // 
$http.get("https://maps.googleapis.com/maps/api/geocode/json?address=700109&key=AIzaSyDNK47S-6brePCvm1Hr6L7RFWAZvsngj1E";)
        $http.get("data.json")
        .then(function(result){
          console.log(result)
           $scope.records=result.data;
        });
    });
    </script>
  </body>
</html>

(then plnkr crashed on me, that's why I don't have a link! ;)

Regards
Sander

-- 
You received this message because you are subscribed to the Google Groups 
"Angular and AngularJS discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to