Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save henriquemenezes/6eb1d89dcf9839bcd97c to your computer and use it in GitHub Desktop.
Save henriquemenezes/6eb1d89dcf9839bcd97c to your computer and use it in GitHub Desktop.
AngularJS force update images from google maps (ngMap)
$scope.map = null;
$scope.$on('mapInitialized', function(event, map) {
$scope.map = map;
});
$scope.$on('cfpLoadingBar:completed', function () {
$timeout(function() {
google.maps.event.trigger($scope.map,'resize')
}, 1000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment