AngularJS - How do I access uiGmapIsReady for Angular-Google-Maps?
I need to access the uiGmapIsReady promise to add geometry and place controls to the map. Is that possible within the framework?
code
uiGmapIsReady.promise(1).then(function(instances) {
instances.forEach(function(inst) {
var map = inst.map;
var uuid = map.uiGmap_id;
var mapInstanceNumber = inst.instance; // Starts at 1.
});
});/code