SmartIT_Extensions/BMC/smart-it-full-helix/scripts/app/location/location-map-controller.js

14 lines
364 B
JavaScript

"use strict";
(function () {
'use strict';
angular.module('locationModule')
.controller('LocationMapController', ['$scope', '$stateParams', function ($scope, $stateParams) {
$scope.POI = {
id: $stateParams.id
};
$scope.state = {
loadingMap: true
};
}]);
})();