ui-map icon indicating copy to clipboard operation
ui-map copied to clipboard

Adding support for InfoBubble: a more customizable infowindow.

Open Dashue opened this issue 11 years ago • 1 comments

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);
    };

Dashue avatar Feb 18 '14 05:02 Dashue

ties back to my first attempt a while ago #5

Dashue avatar Feb 18 '14 05:02 Dashue