I created an Angular Service Provider that asynchronous loading Google Map API.
Here is an source code and example how to configure the language setting for the map. It is easy to add other options to it as you wish in the source code.
angular.module('googleMapAPI', []) | |
.config(function(googleMapServiceProvider) { | |
googeMapServiceProvider.setLang('zh-HK'); // Configuration that loading Google Map API in Traditional Chinese | |
}) | |
.provider('googleMapService', function () { | |
var language = 'en-US'; | |
function loadScript($document, callback, success) { | |
var scriptTag = $document.createElement('script'); | |
scriptTag.id = "google-map-script"; | |
scriptTag.type = "text/javascript"; | |
scriptTag.src = 'https://maps.googleapis.com/maps/api/js?libraries=geometry&sensor=false&callback=mapReady®ion=HK&language=' + language; | |
$document.getElementsByTagName('body')[0].appendChild(scriptTag); | |
} | |
this.setLang = function(lang) { | |
language = lang; | |
} | |
this.$get = ['$document', '$q', '$window', function($document, $q, $window) { | |
var deferred = $q.defer(); | |
loadScript($document[0]); | |
$window.mapReady = (function(deferred) { | |
return function() { | |
deferred.resolve(google); | |
delete $window.mapReady | |
} | |
})(deferred); | |
return deferred.promise; | |
}]; | |
}) |