Tests are broken due to "Infobubble is not defined", please advice how to handle this.
Currently doesn't work with "Controller As" syntax, would love to get help to fix this
There's a quirk with only the first bubble being hidden on start, hence the need for HasMapMenuBeenOpened
Usage:
Add Location
$scope.OpenMapMenu = function (latLng) {
$scope.HasMapMenuBeenOpened = true;
var marker = new google.maps.Marker({
map: $scope.MyMap,
position: latLng,
icon: '/Content/Images/Markers/Empty.png'
});
$scope.MapMenu.open($scope.MyMap, marker);
};
Tests are broken due to "Infobubble is not defined", please advice how to handle this. Currently doesn't work with "Controller As" syntax, would love to get help to fix this There's a quirk with only the first bubble being hidden on start, hence the need for HasMapMenuBeenOpened
Usage:
$scope.OpenMapMenu = function (latLng) { $scope.HasMapMenuBeenOpened = true;