diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js index a1c59e0..90ef1a5 100644 --- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js +++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js @@ -974,7 +974,12 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo .select(); $scope.showAnnotation(selectedPinData); - + angular.forEach($scope.selectedPin, function (value, key) { + var pinName = 'Arc_' + value; + var pin = $('aaDetailViewCanvas').getLayer(pinName); + pin.fillStyle = radialAfterClick; + alert(pin); + }) }