So, I'm fairly new to angular and having hard time implementing google map API. I keep getting error:
Uncaught InvalidValueError: initialize is not a function.
I have this for the script tag:
<script src="https://maps.googleapis.com/maps/api/js?key=MY API KEY GOES HERE&callback=initialize"
async defer></script>
But since my function initialize() is inside my controller, it doesn't recognize it. If I put the function outside of the controller, it does recognize it. But since I have all the data defined within the controller, I need this inside it. I'm not even sure what I'm supposed to ask but I just need to get the map to show up. Any ideas?
You could consider to load Google Maps API synchronously as demonstrated below
angular.module('myApp', [])
.controller('MyCtrl', function($scope) {
$scope.initialize = function() {
var map = new google.maps.Map(document.getElementById('map_div'), {
center: {lat: -34.397, lng: 150.644},
zoom: 8
});
}
google.maps.event.addDomListener(window, 'load', $scope.initialize);
});
html, body {
height: 100%;
margin: 0;
padding: 0;
}
#map_div {
height: 480px;
}
<script src="https://code.angularjs.org/1.3.15/angular.js"></script>
<script src="https://maps.googleapis.com/maps/api/js" ></script>
<div ng-app="myApp" ng-controller="MyCtrl">
<div id="map_div"></div>
</div>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With