Skip to content

Instantly share code, notes, and snippets.

@cdaz5
Created August 26, 2018 13:00
Show Gist options
  • Save cdaz5/7abc91f9a1d37161b1398894ace08521 to your computer and use it in GitHub Desktop.
Save cdaz5/7abc91f9a1d37161b1398894ace08521 to your computer and use it in GitHub Desktop.
app.controller('MainController', ['$scope', 'places', function($scope, places){
$scope.mapCenter = { lat: 40.741934, lng: -74.004897, zoom: 17 }
console.log('init')
places.success(function(data){
console.log('data', data)
$scope.geodata = data;
$scope.mapMarkers = geodataToMarkers($scope.geodata);
});
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment