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