// --------------------------------------------------------------------- // JS code of file custom_obnetz_plotparameters.js // --------------------------------------------------------------------- /** * SAMPLE * Beschreibt den Aufbau eines benuzterdefinierten Modus * * Dienst zur Implementierung kundenspezifischer Modi * SUSI Instanziiert alle Custom-Modi die sich unter dem Namespace susi.custommode befinden * Jeder benutzerspezifische Modus besteht aus: * - Öffentliche Variable (Name) mit dessen Bezeichnung der Modus aktiviert werden kann * - deactivate Methode die immer ausgeführt wird wenn sich ein Modus ändert * - activate Mehtode die beim Aktivieren des Modus ausgeführt wird * * @namespace susi.customMode * @implements susi.custommode.SET_NEW_CURSOR Set einen neuen Cursor auf der Karte * * * @author B.Eng. Jan Tunger, BARAL Geohaus-Consulting AG * @email Jan.Tunger@baral-geohaus.de * * @since 1.2.1 */ /** * Funktion zum Setzen OBNetz-spezifischer Plotparameter * * @namespace OBNetz.processWMPSRequest * @class * * @since 1.0 */ function obnetzWMPSRequest(m_wmps_request_xml){ console.debug("obnetzWMPSRequest - start"); m_wmps_request_xml.GET_LAYOUT.PROPERTIES.MAPATTR["@BLATT"]="1 von 1"; if (typeof(UTWebContainer.getUser().attributes)!=="undefined" && typeof(UTWebContainer.getUser().attributes.Company)!=="undefined"){ m_wmps_request_xml.GET_LAYOUT.PROPERTIES.MAPATTR["@FREITEXT_6"]=UTWebContainer.getUser().attributes.Company; } console.debug("obnetzWMPSRequest - end"); console.dir(m_wmps_request_xml); return m_wmps_request_xml; }; // --------------------------------------------------------------------- // JS code of file evo_Tooltip_Station_UA_Stationslast.js // --------------------------------------------------------------------- function evoStation_UA_Stationslast(obj){ var utDateToDate; require(["utjsc/util/transform/utDateToDate"], function(_utDateToDate){ utDateToDate = _utDateToDate }) UTJSC._base().getUtServer().getAssignments(function(_results){ var _stationsbewertungen = dojo.filter(_results,function(assignment){ return (assignment.target.utclass.id==90075 && assignment.target.utclass.subtype==1) }) _stationsbewertungenKeys = dojo.map(_stationsbewertungen, function(assignment){ return {"id":assignment.target.id,"utclass":{"id":assignment.target.utclass.id,"subtype":assignment.target.utclass.subtype}} }) // Bewertungen ermitteln UTJSC._base().getUtServer().getUtObjects(function(_utObjects){ console.log("evoStation_UA_Stationslast assigned ut objects", _utObjects); if(_utObjects.length > 0){ var _latestObject; dojo.forEach(_utObjects, function(_utObject){ var _latest = null; var _latestAttribute = dojo.filter(_utObject.attributes, function(_attribut){ return _attribut.Key == "DATUM_AUFNAHME"; }) if(_latestAttribute.length>0){ console.log("date", _latestAttribute[0].Value, utDateToDate(_latestAttribute[0].Value)); if(_latest!=null){ if(_latest < utDateToDate(_latestAttribute[0].Value)){ _latest = utDateToDate(_latestAttribute[0].Value); _latestObject = _utObject; } } else{ _latest = utDateToDate(_latestAttribute[0].Value); _latestObject = _utObject; } } }) console.log("evoStation_UA_Stationslast latest ut objects", _latestObject); var _TR1Attribute = dojo.filter(_latestObject.attributes, function(_attribut){ return _attribut.Key == "TR1_ERRECHNETER_STROM"; }); var _TR2Attribute = dojo.filter(_latestObject.attributes, function(_attribut){ return _attribut.Key == "TR2_ERRECHNETER_STROM"; }); var _TR1NennleistungAttribute = dojo.filter(_latestObject.attributes, function(_attribut){ return _attribut.Key == "TR1_NENNLEISTUNG"; }); var _TR2NennleistungAttribute = dojo.filter(_latestObject.attributes, function(_attribut){ return _attribut.Key == "TR2_NENNLEISTUNG"; }); var _TR1AuslastungAttribute = dojo.filter(_latestObject.attributes, function(_attribut){ return _attribut.Key == "TR1_AUSLASTUNG"; }); var _TR2AuslastungAttribute = dojo.filter(_latestObject.attributes, function(_attribut){ return _attribut.Key == "TR2_AUSLASTUNG"; }); console.log("evoStation_UA_Stationslast attributes found", _TR1Attribute[0].Value, _TR2Attribute[0].Value); obj.deferred.resolve([{ "name":"Errechneter Strom Trafo1", "value":_TR1Attribute[0].Value + " A" }, { "name":"Nennleistung Trafo1", "value":_TR1NennleistungAttribute[0].Value + " kVA" }, { "name":"Auslastung Trafo1", "value":_TR1AuslastungAttribute[0].Value + " %" }, { "name":"Errechneter Strom Trafo2", "value":_TR2Attribute[0].Value + " A" }, { "name":"Nennleistung Trafo2", "value":_TR2NennleistungAttribute[0].Value + " kVA" }, { "name":"Auslastung Trafo2", "value":_TR2AuslastungAttribute[0].Value + " %" }, ]); } }, _stationsbewertungenKeys) },obj.uids.OBJ_ID, obj.uids.ACLASS_ID, obj.uids.UTCLSUB_ID); } // --------------------------------------------------------------------- // JS code of file logging.js // --------------------------------------------------------------------- dojo.connect(susi.event,"onAppLoaded",function(){ UTWebContainer.register().action(0, "App Loaded: "+ UTWebContainer.getWorkspace().getConfiguration().getApplicationName()+ " Username:"+ UTWebContainer.getUser().name+ " Zeitstempel: "+new Date(), function(){}); }); // --------------------------------------------------------------------- // JS code of file mode_SET_NEW_CURSOR.js // --------------------------------------------------------------------- /** * SAMPLE * Beschreibt den Aufbau eines benuzterdefinierten Modus * * Dienst zur Implementierung kundenspezifischer Modi * SUSI Instanziiert alle Custom-Modi die sich unter dem Namespace susi.custommode befinden * Jeder benutzerspezifische Modus besteht aus: * - Öffentliche Variable (Name) mit dessen Bezeichnung der Modus aktiviert werden kann * - deactivate Methode die immer ausgeführt wird wenn sich ein Modus ändert * - activate Mehtode die beim Aktivieren des Modus ausgeführt wird * * @namespace susi.customMode * @implements susi.custommode.SET_NEW_CURSOR Set einen neuen Cursor auf der Karte * * * @author B.Eng. Jan Tunger, BARAL Geohaus-Consulting AG * @email Jan.Tunger@baral-geohaus.de * * @since 1.2.1 */ /** * Interface für kundenspezifische Modi * * @namespace susi.custommode * @class SET_NEW_CURSOR * * @since 1.2.1 */ susi.custommode['SET_NEW_CURSOR'] = function(_Workspace, _CodiContainer){ var m_self = this; var m_Workspace = _Workspace; // Referenz auf das Web RaMsy Workspace Objekt var m_CodiContainer = _CodiContainer; // Referenz auf WebCodi /** * MANDATORY * Bezeichnung der spezifischen Modi */ this.Name = 'SET_NEW_CURSOR'; /** * MANDATORY * Setzt den Modus zurück */ this.deactivate = function(){ } /** * MANDATORY * Aktiviert den Modus */ this.activate = function(){ var _newCursor = getNewCursor(); m_self.setMapCursor(_newCursor); } /** * OPTIONAL * Modus relevante Funktionen */ function getNewCursor(){ return "identify_polygon" } }; // --------------------------------------------------------------------- // JS code of module dataExport // --------------------------------------------------------------------- dojo.connect(susi.event, "onInitExtensions", function() { var moduleConf = UTWebContainer.getModuleConfiguration("dataExport"); if (moduleConf !== null) { if (moduleConf.enable !== true) { } else { UTWebContainer.createWindow({ "id": "DATAEXPORT", "label": "Datenexport", "width": 400, "height": 505, "iconClass": "sym_export_blue_20", "iframe": moduleConf.url, "loadonshow": true, "loadonstartup":false }); UTWebContainer.loadModuleIconFiles("module/dataExport/image/icons/"); } } }); // --------------------------------------------------------------------- // JS code of module onlinehelp // --------------------------------------------------------------------- dojo.connect(susi.event,"onInitExtensions",function(_conf){ console.info("onlinehelp: onInitExtensions"); //CSS-Dateien laden (bei spaeterem Laden wirken sich die CSS-Dateien im IE9 nicht aus!) var _moduleConfiguration = UTWebContainer.getWorkspace().getConfiguration().getModule("onlinehelp"); if(_moduleConfiguration != null){ if(_moduleConfiguration.enable == true){ UTWebContainer.loadModuleCSSFiles({ "source":[ "api/baral/onlinehelp/css/OnlineHelpWidget.css" ] }); var _startOnlineHelp = function() { console.debug("onlinehelp: init module 'onlinehelp'"); //Planning-Tool require(["baral/onlinehelp/OnlineHelp", "dojo/domReady!"], function(main, config, dom){ window.m_OnlineHelp = new baral.onlinehelp.OnlineHelp({ configuration: _moduleConfiguration }); m_OnlineHelp.startup(); }); } _startOnlineHelp(); } else { console.info("onlinehelp: Module not enabled in json-config"); } } }); // --------------------------------------------------------------------- // JS code of module planning // --------------------------------------------------------------------- dojo.connect(susi.event, "onAppLoaded", function() { console.info("onAppLoaded"); //CSS-Dateien laden (bei spaeterem Laden wirken sich die CSS-Dateien im IE9 nicht aus!) var _moduleConfiguration = UTWebContainer.getWorkspace().getConfiguration().getModule("planning"); if (_moduleConfiguration !== null) { if (_moduleConfiguration.enable === true) { UTWebContainer.loadModuleCSSFiles({ "source": [ "api/aed-sicad/planning/css/MessageBox.css", "api/aed-sicad/planning/css/CodiGalleryWidget.css", "api/aed-sicad/planning/css/PlanningTreeWidget.css", "api/aed-sicad/planning/css/PlanningGuidanceWidget.css", "api/aed-sicad/planning/css/PlanningQueryWidget.css", "api/aed-sicad/planning/css/PlanningAttributeDataWidget.css" ] }); } } if (_moduleConfiguration !== null && _moduleConfiguration.enable === true) { if (_moduleConfiguration.type === "ut" || _moduleConfiguration.type === null) { UTWebContainer.loadModuleCSSFiles({ "source": [ "api/aed-sicad/planning/css/MessageBox.css", "api/aed-sicad/planning/css/CodiGalleryWidget.css", "api/aed-sicad/planning/css/PlanningTreeWidget.css", "api/aed-sicad/planning/css/PlanningGuidanceWidget.css", "api/aed-sicad/planning/css/PlanningQueryWidget.css", "api/aed-sicad/planning/css/PlanningAttributeDataWidget.css" ] }); //JS-Dateien laden dojo.connect(susi.event, "onModuleLoaded", function(_moduleName) { console.info("onModuleLoaded: " + _moduleName); if (_moduleName == "utweb") { console.info("aed-sicad.planning: onInitExtensions()"); var _moduleConfiguration = UTWebContainer.getWorkspace().getConfiguration().getModule("planning"); var _startPlanningTool = function() { console.info("aed-sicad.planning: onInitExtensions(): init module 'planning'"); //Planning-Tool require(["aed-sicad/planning/PlanningUT", "dojo/domReady!"], function(PlanningUT) { window.PLANNING = new PlanningUT({ configuration: _moduleConfiguration }); // Workaround [TUN] // globale Variable mPlanning sollte langfristig durch PLANNING ersetzt werden // mPlanning ist deprecated window.mPlanning = PLANNING; // Workaround End //onModuleLoaded event triggern wenn das Planning Modul geladen ist dojo.connect(mPlanning, "onLoaded", function() { susi.event.onModuleLoaded("planning"); }); mPlanning.startup(); }); }; _startPlanningTool(); } }); } else { UTWebContainer.loadModuleCSSFiles({ "source": [ "api/baral/planning/css/MessageBox.css", "api/baral/planning/css/CodiGalleryWidget.css", "api/baral/planning/css/PlanningTreeWidget.css", "api/baral/planning/css/PlanningGuidanceWidget.css", "api/baral/planning/css/PlanningQueryWidget.css", "api/baral/planning/css/PlanningAttributeDataWidget.css" ] }); var _startPlanningTool = function() { console.info("aed-sicad.planning: onInitExtensions(): init module 'planning'"); //Planning-Tool require(["baral/planning/PlanningCODI", "dojo/aspect", "dojo/domReady!"], function(PlanningCodi, djAspect) { window.PLANNING = new PlanningCodi({ configuration: _moduleConfiguration }); // Workaround [TUN] // globale Variable mPlanning sollte langfristig durch PLANNING ersetzt werden // mPlanning ist deprecated window.mPlanning = PLANNING; // Workaround End //onModuleLoaded event triggern wenn das Planning Modul geladen ist dojo.connect(mPlanning, "onLoaded", function() { susi.event.onModuleLoaded("planning"); }); mPlanning.startup(); // [CR #3197][TUN] // Nach dem Laden einer neuen Datenansicht muss die Querydefinition der angehakten Varianten wieder gesetzt werden. // Andernfalls würden alle Varianten angezeigt werden. djAspect.after(UTWebContainer.getWorkspace().getMap().getMapObject(),"onLayersAddResult",function(){ PLANNING.refreshMapQueryDefinition(); }); }); }; _startPlanningTool(); } } }); // --------------------------------------------------------------------- // JS code of module streetsmart // --------------------------------------------------------------------- /** * * Produkt: BARAL StreetSmart Plugin * Version: 1.2.437 * * Copyright by BARAL Geohaus-Consulting AG, 1999-2019 * * BARAL Geohaus-Consulting AG * Ludwig-Erhard-Straße 54, D-72760 Reutlingen * Telefon +49 7121 9464 0 * * DIESE DATEI ODER INHALTE DIESER DATEI DUERFEN NICHT OHNE AUSDRUECKLICHE ERLAUBNIS * DER FIRMA BARAL GEOHAUS-CONSULTING AG, REUTLINGEN VERAENDERT, KOPIERT ODER * AN DRITTE WEITERGEGEBEN WERDEN. * */ if(typeof(streetsmart) === "undefined"){ streetsmart = {}; } dojo.connect(susi.event, "onInitExtensions", function (_workspace) { var moduleConf = _workspace.getConfiguration().getModule("streetsmart"); if (moduleConf !== null) { if (moduleConf.enabled === true) { StreetSmart = {}; var StreetSmartSecondInstance = null; // [BUL] Load module css files _workspace.getContainer().loadModuleCSSFiles({ "source": [ "module/streetsmart/css/viewer.css" ], "uncompressed": [ "module/streetsmart/css/viewer.css" ], "compressed": [ "module/streetsmart/css/viewer.css" ] }); _workspace.getContainer().loadModuleJSFiles({ "source":[ "module/streetsmart/js/src/streetsmart.basic", "module/streetsmart/js/src/streetsmart.external", "module/streetsmart/js/src/streetsmart.math", "module/streetsmart/js/src/streetsmart.layer" ], "uncompressed":[ "module/streetsmart/js/streetsmart.dev" ], "compressed":[ "module/streetsmart/js/streetsmart" ] }, function () { // Streetsmart-Instanz erzeugen StreetSmart.viewer = new streetsmart.basic.Viewer(this); StreetSmart.viewer.init(moduleConf); // TODO: Mehrfachinstanziierung // Test: 2. Instanz im TOC erzeugen /* setTimeout(function() { StreetSmartSecondInstance = new streetsmart.basic.Viewer(); StreetSmartSecondInstance.init({ "username": "baral_develop2", "password": "12345", "node": dojo.query("#TOC #window_content")[0], "apikey": "test" }); },5000); */ /** * StreetSmart-Viewer mit einem Query öffnen * * @param _query {*} ImageID, Koordinate, Adresse, ... * @param [_featureID] {int} ID des Features, welches initial selektiert sein soll * * @since 1.0 */ openStreetsmart = function (_query, _featureID) { moduleConf.query = _query; moduleConf.featureID = _featureID; StreetSmart.viewer.open(moduleConf); }; /** * StreetSmart in Web GEN öffnen (Tooltipfunktion) * * @param webgenPath {string} Pfad zum Web GEN * @param webgenProjectId {string} Web GEN Projektname bzw. ProjektID * @param webgenTableId {string} ID der Tabelle * @param webgenSite {string} Neuen Datensatz erzeugen ("new") oder Datensatz bearbeiten ("dataset")? * @param id {string} ID des Cyclomedia-Panoramabilds (Neuer Datensatz: site="new") oder des zu bearbeitenden Objektes (Datensatz bearbeiten: site="dataset") * * @since 1.0 */ openStreetsmartWebGEN = function(webgenPath, webgenProjectId, webgenTableId, webgenSite, id, openInBrowserWindow){ // Default if(typeof openInBrowserWindow === "undefined"){ openInBrowserWindow = false; } // Fenster ID var windowID = "WEBGEN_" + webgenProjectId.toUpperCase(); // Iframe oder neues Browserfenster? var _windowType = "_iframe"; if(openInBrowserWindow){ _windowType = "_window"; } // Ist das Fenster bereits offen? var _windowIsOpen = false; if(openInBrowserWindow && StreetSmart.webgenBrowserWindow && !StreetSmart.webgenBrowserWindow.closed){ _windowIsOpen = true; } else if(!openInBrowserWindow && StreetSmart.webgenUTJSCWindow){ _windowIsOpen = true; } // WebGEN-Projekt laden if(_windowIsOpen) { // Neue Seite über die WebGEN-API setzen if (webgenSite === "dataset") { // Globale WebGEN-Variable verwenden this["webgen_" + webgenProjectId + _windowType].api.table(webgenTableId).dataset(parseInt(id, 10)).loadSite(webgenSite); this["webgen_" + webgenProjectId + _windowType].id = id; } else { // Globale WebGEN-Variable verwenden this["webgen_" + webgenProjectId + _windowType].api.table(webgenTableId).loadSite(webgenSite); this["webgen_" + webgenProjectId + _windowType].extern.imageid = id; } } else { // Rollen ermitteln var _roles = _workspace.getContainer().getUser().roles; // URL mit Parametern aufbauen var _url = webgenPath + "/client.gsp?file=@['webgen.key']@&project=" + webgenProjectId + "&roles=" + _roles.join(",") + "&table=" + webgenTableId + "&site=" + webgenSite; // Web GEN im Erzeugungsmodus if (webgenSite === "dataset") { _url += "&id=" + id; } // Web GEN im Bearbeitungsmodus else { _url += "&extern_imageid=" + id; } _url = encodeURI(_url); // Soll sich WebGEN in einem UTJSC-Fenster oder in einem neuen Browserfenster öffnen if(openInBrowserWindow === false) { // UTJSC-Fenster ermitteln oder erzeugen if (_workspace.getContainer().getWindowById(windowID) !== null) { StreetSmart.webgenUTJSCWindow = _workspace.getContainer().getWindowById(windowID); } else { StreetSmart.webgenUTJSCWindow = _workspace.getContainer().createWindow({ "showonstartup": false, "id": windowID, "label": "StreetSmart", "width": 600, "scrollable": true, "iframe": "", "iconClass": "svg streetsmart-circle 20" }); } // Fensterinhalt setzen (Iframe) StreetSmart.webgenUTJSCWindow.getIframeContent().setSource(_url); StreetSmart.webgenUTJSCWindow.getIframeContent().loadSource(); // Fenster rechts andocken _workspace.getContainer().dockWindow(StreetSmart.webgenUTJSCWindow, "right"); } // Browserfenster öffnen else { StreetSmart.webgenBrowserWindow = open(_url, windowID, "resizable=yes"); } } // UTJSC-Fenster öffnen if(openInBrowserWindow === false) { StreetSmart.webgenUTJSCWindow.open(true); } else { StreetSmart.webgenBrowserWindow.focus(); } }; }); } } //# sourceURL=streetsmart.utjsc.js }); // --------------------------------------------------------------------- // JS code of module switchWidget // --------------------------------------------------------------------- /** * * Produkt: UTJSC * Version: 4.0.1757 * * Copyright by BARAL Geohaus-Consulting AG, 1999-2019 * * BARAL Geohaus-Consulting AG * Ludwig-Erhard-Straße 54, D-72760 Reutlingen * Telefon +49 7121 9464 0 * * DIESE DATEI ODER INHALTE DIESER DATEI DUERFEN NICHT OHNE AUSDRUECKLICHE ERLAUBNIS * DER FIRMA BARAL GEOHAUS-CONSULTING AG, REUTLINGEN VERAENDERT, KOPIERT ODER * AN DRITTE WEITERGEGEBEN WERDEN. * */ dojo.connect(susi.event, "onInitExtensions", function(_workspace) { dojo.connect(susi.event, "onModuleLoaded", function(_moduleName) { if (_moduleName == "utweb") { var moduleConf = UTWebContainer.getWorkspace().getConfiguration().getModule("switchWidget"); if (moduleConf !== null) { if (moduleConf.enable === true) { // Create namespace switchWidget = {}; // Load module css files UTWebContainer.loadModuleCSSFiles({ "source": [ "module/switchWidget/css/switchWidget.css" ] }); // Load module js files UTWebContainer.loadModuleJSFiles({ "source": [ "module/switchWidget/js/switchWidget" ] }, function() { require(["aed-sicad/utswitch/TooltipAddins"], function(SwitchWidgetAddins) { // Create UTJSC instance SWITCHWIDGET = new SwitchWidgetAddins(UTJSC._base()); }); }); } } } }); }); // --------------------------------------------------------------------- // JS code of module tooltipExts // --------------------------------------------------------------------- /** * * Produkt: UTJSC * Version: 4.0.1757 * * Copyright by BARAL Geohaus-Consulting AG, 1999-2019 * * BARAL Geohaus-Consulting AG * Ludwig-Erhard-Straße 54, D-72760 Reutlingen * Telefon +49 7121 9464 0 * * DIESE DATEI ODER INHALTE DIESER DATEI DUERFEN NICHT OHNE AUSDRUECKLICHE ERLAUBNIS * DER FIRMA BARAL GEOHAUS-CONSULTING AG, REUTLINGEN VERAENDERT, KOPIERT ODER * AN DRITTE WEITERGEGEBEN WERDEN. * */ /* * This module offers a possibility to add additional attribute data from a database via sql to an tooltip dynamically. * @author B.Eng. Jan Tunger, BARAL Geohaus-Consulting AG */ // Init module if utjsc is ready dojo.connect(susi.event,"onInitExtensions",function(_conf){ // Get the configuration of this module var moduleConf = UTWebContainer.getWorkspace().getConfiguration().getModule("tooltipExts"); if(moduleConf != null){ // Check whether module is enabled if(moduleConf.enable == true){ // Load module css files UTWebContainer.getWorkspace().getTools().loadCSSFiles(["module/tooltipExts/css/tooltipExts.css"]); // Load additional js files UTWebContainer.getWorkspace().getTools().loadJSFiles(["module/tooltipExts/js/TooltipFunc"],function(){ console.info("tooltipExts Module successfully loaded!"); }); } } }); // --------------------------------------------------------------------- // JS code of module utAppConnector // --------------------------------------------------------------------- /** * * Produkt: UTJSC * Version: 4.0.1757 * * Copyright by BARAL Geohaus-Consulting AG, 1999-2019 * * BARAL Geohaus-Consulting AG * Ludwig-Erhard-Straße 54, D-72760 Reutlingen * Telefon +49 7121 9464 0 * * DIESE DATEI ODER INHALTE DIESER DATEI DUERFEN NICHT OHNE AUSDRUECKLICHE ERLAUBNIS * DER FIRMA BARAL GEOHAUS-CONSULTING AG, REUTLINGEN VERAENDERT, KOPIERT ODER * AN DRITTE WEITERGEGEBEN WERDEN. * */ dojo.connect(susi.event, "onInitExtensions", function(_workspace) { var _moduleConf = _workspace.getConfiguration().getModule("utAppConnector"); if (_moduleConf !== null) { if (_moduleConf.enable === true) { // Create namespace UTAppConnector = {}; // Load module js files require([ "utAppConnector/Connection" ], dojo.hitch(this, function(Connection) { UTAppConnector.connection = new Connection(_workspace, _moduleConf); susi.event.onModuleLoaded("utAppConnector"); })); } } }); //# sourceURL=utAppConnector.js // --------------------------------------------------------------------- // JS code of module utweb // --------------------------------------------------------------------- /** * * Produkt: UTJSC * Version: 4.0.1757 * * Copyright by BARAL Geohaus-Consulting AG, 1999-2019 * * BARAL Geohaus-Consulting AG * Ludwig-Erhard-Straße 54, D-72760 Reutlingen * Telefon +49 7121 9464 0 * * DIESE DATEI ODER INHALTE DIESER DATEI DUERFEN NICHT OHNE AUSDRUECKLICHE ERLAUBNIS * DER FIRMA BARAL GEOHAUS-CONSULTING AG, REUTLINGEN VERAENDERT, KOPIERT ODER * AN DRITTE WEITERGEGEBEN WERDEN. * */ dojo.connect(susi.event, "onInitExtensions", function (_workspace) { var moduleConf = _workspace.getConfiguration().getModule("utweb"); if (moduleConf != null) { if (moduleConf.enable == true) { // Create namespace utweb = {}; // Load module css files _workspace.getContainer().loadModuleCSSFiles({ "source": [ "module/utweb/css/default/src/utweb.css", "module/utweb/css/default/src/recordshow.css", "module/utweb/css/default/src/locator.css", "module/utweb/css/default/src/components.css", "module/utweb/css/default/src/searchform.css", "module/utweb/css/default/src/selectionform.css", "module/utweb/css/default/src/dynamicdataform.css", "module/utweb/css/default/src/classtree.css", "module/utweb/css/default/src/selectiontree.css", "module/utweb/css/default/src/tracingform.css", "module/utweb/css/default/src/editmanagerform.css", "module/utweb/css/default/src/tooltipaddins.css", "module/utweb/jsp/getIcons.jsp", "module/utweb/js/api/utjsc/forms/layout/css/utWizard.css" ], "uncompressed": [ "module/utweb/css/default/" + susi.configuration.defaults.version + "/utjsc_uncompressed.css", "module/utweb/jsp/getIcons.jsp", "module/utweb/js/api/utjsc/forms/layout/css/utWizard.css" ], "compressed": [ "module/utweb/css/default/" + susi.configuration.defaults.version + "/utjsc_compressed.css", "module/utweb/jsp/getIcons.jsp", "module/utweb/js/api/utjsc/forms/layout/css/utWizard.css" ] }); // Load module js files _workspace.getContainer().loadModuleJSFiles({ "source": [ "module/utweb/js/src/utweb.basic", "module/utweb/js/src/utweb.configuration", "module/utweb/js/src/utweb.forms", "module/utweb/js/src/utweb.forms.components", "module/utweb/js/src/utweb.math" ], "uncompressed": [ "module/utweb/js/" + susi.configuration.defaults.version + "/utjsc_uncompressed" ], "compressed": [ "module/utweb/js/" + susi.configuration.defaults.version + "/utjsc_compressed" ] }, dojo.hitch(this, function (_workspace) { require([ "utjsc/forms/layout/utWizardStep", "utjsc/forms/layout/utWizard", "utjsc/services/UtServerConnection", "utjsc/services/UtPlanningServerConnection", "utjsc/tracing/Base", "utjsc/editing/Base", "utjsc/external/Application", "utjsc/external/TooltipAddins", "utjsc/external/Printer", "utjsc/forms/DynamicData", "utjsc/forms/DynamicDataSet", "utjsc/forms/UtObjectViewer", "utjsc/forms/UtObjectDataview", "utjsc/forms/ObjectManager", "utjsc/forms/TraceManager", "utjsc/forms/EditManager", "utjsc/forms/AttributeSearch", "utjsc/forms/CustomSearch", "utjsc/forms/CustomSearchSet", "utjsc/forms/AddressLocator", "utjsc/forms/CadastreLocator", "utjsc/forms/components/Editfield", "utjsc/forms/components/AssignmentTree", "utjsc/forms/components/AssignmentClassTree", "utjsc/forms/components/DomainTree", "utjsc/forms/components/Loading", "utjsc/forms/components/RemarksGrid", "utjsc/forms/components/HistoryGrid", "utjsc/forms/components/ActivityLogGrid", "utjsc/forms/components/NoAccess", "utjsc/forms/components/LocatorMessage", "utjsc/forms/components/Datasheet", "utjsc/forms/components/LoadingSpinner", "utjsc/forms/components/DynamicDataEditDialog", "utjsc/forms/SelectionSet", "utjsc/util/MultiStateControl", "utjsc/util/Transformation", "utjsc/selection/DnDManager", "utjsc/custom/custom-env", "utjsc/configuration/AppConfiguration", "utjsc/configuration/UserConfiguration", "utjsc/language/language", "dojo/on" ], dojo.hitch(this, function (_workspace) { // Create UTJSC instance UTJSC = new utweb.basic.utweb(); // Get UTWeb configuration from utjsc var _userconfig = _workspace.getConfiguration().getUtWeb(); // UT-Server-URLs ermitteln var _urls = _workspace.getConfiguration().getUtwebServiceConfiguration(_workspace.getMap().getServicesConfiguration()); if (_urls !== null) { _userconfig.utserver["urls"] = _urls; } var _planningUrls = _workspace.getConfiguration().getUtPlanningServiceConfiguration(_workspace.getMap().getServicesConfiguration()); if (_planningUrls !== null) { if (typeof(_userconfig.utplanning) == "undefined") { _userconfig["utplanning"] = {}; } _userconfig.utplanning["urls"] = _planningUrls; } if (typeof esri.id.credentials !== "undefined") { if (esri.id.credentials.length > 0) { _userconfig.utserver["token"] = esri.id.credentials[0].token; // [CR #4894][BUL] Weiterreichen des Tokens an den UT-Server, wenn sich dieser geändert hat esri.id.credentials[0].on("token-change", function () { _userconfig.utserver["token"] = esri.id.credentials[0].token; }); } } /* [Bug #2113]GRU: connect vorgezogen. Da das onLoaded-Event in der init-Methode gefeuert wird. */ dojo.connect(UTJSC, "onLoaded", dojo.hitch(this, function (_workspace) { console.info("module utweb successfully loaded!"); susi.event.onModuleLoaded("utweb"); _workspace.getContainer().statusMessage().add("UT_SERVER_SYNC", UTJSC._base().getLanguage().system.labelUtServerSyncMsg); dojo.connect(UTJSC._base().getUtServer(), "onSync", dojo.hitch(this, function (_workspace) { _workspace.getContainer().statusMessage().show("UT_SERVER_SYNC"); }, _workspace)); dojo.connect(UTJSC._base().getUtServer(), "onSyncFinished", dojo.hitch(this, function (_workspace) { _workspace.getContainer().statusMessage().hide("UT_SERVER_SYNC"); }, _workspace)); }, _workspace)); UTJSC.init(_workspace.getApplicationConfiguration().getUtWeb(), _userconfig, {}, { username: _workspace.getUserManagementService().getUser().name, sessionId: _workspace.getUserManagementService().getUser().session, licType: _workspace.licType().type, srs: _workspace.getMap().getMapObject().spatialReference.wkid }); // Get tags of the current dataview on startup var _dataviewTags = _workspace.getConfiguration().getServiceTags(_workspace.getConfiguration().getServiceForStartUp()); if (_dataviewTags.length > 0) { //check if the tags contains ut tags var _utTags = utweb.math.convertJscTagsToMapLevelPriorityList(_dataviewTags); if (_utTags.length > 0) { UTJSC.setMapLevelPriorityList(_utTags); } } dojo.connect(UTJSC, "onZoomToExtent", dojo.hitch(this, function (_workspace, xmin, xmax, ymin, ymax) { _workspace.getContainer().extent(xmin, ymin, xmax, ymax); }, _workspace)); dojo.connect(UTJSC, "onZoomToGeometry", dojo.hitch(this, function (_workspace, geom, _callback) { _workspace.getContainer().zoom(geom, 10, _callback); }, _workspace)); dojo.connect(UTJSC, "onHighlight", dojo.hitch(this, function (_workspace, geom) { _workspace.getContainer().highlight(geom); }, _workspace)); dojo.connect(UTJSC, "onRefreshMap", dojo.hitch(this, function (_workspace, _callback) { _workspace.getContainer().refreshMap(_callback); }, _workspace)); dojo.connect(UTJSC, "onMessage", dojo.hitch(this, function (_workspace, _type, _message) { if (_type === "ERROR") { _workspace.getContainer().toaster().error(_message, 10000); } else if (_type === "WARNING") { _workspace.getContainer().toaster().warning(_message, 10000); } else if (_type === "INFO") { _workspace.getContainer().toaster().message(_message); } }, _workspace)); // Layer für Ergebnisse UTJSC.graphics().addLayer("ResultLayer", _workspace.getMap().addGraphicsLayer()); // Layer für Flags erzeugen UTJSC.graphics().addLayer("TracingFlagsLayer", _workspace.getMap().addGraphicsLayer()); // Layer für Query-Visualisierung erzeugen UTJSC.graphics().addLayer("PointSelectionLayer", _workspace.getMap().addGraphicsLayer()); dojo.connect(UTJSC, "onAddFlag", function (geom) { var symbol = new esri.symbol.PictureMarkerSymbol('module/utweb/resources/svg/marker/ut-tracing-flag-blue.svg', 40, 40); symbol.setOffset(0, 17); UTJSC.graphics().getLayer("TracingFlagsLayer").add(new esri.Graphic(esri.geometry.fromJson(geom), symbol)); }); dojo.connect(UTJSC, "onAddBarrier", function (geom) { var symbol = new esri.symbol.PictureMarkerSymbol('module/utweb/resources/svg/marker/ut-tracing-barrier-red.svg', 40, 40); symbol.setOffset(0, 17); UTJSC.graphics().getLayer("TracingFlagsLayer").add(new esri.Graphic(esri.geometry.fromJson(geom), symbol)); }); dojo.connect(UTJSC, "onAddBridge", function (geom) { var symbol = new esri.symbol.PictureMarkerSymbol('module/utweb/resources/svg/marker/ut-tracing-bridge-green.svg', 40, 40); symbol.setOffset(0, 17); UTJSC.graphics().getLayer("TracingFlagsLayer").add(new esri.Graphic(esri.geometry.fromJson(geom), symbol)); }); dojo.connect(UTJSC, "onRemoveAllFlags", function () { UTJSC.graphics().getLayer("TracingFlagsLayer").clear(); }); dojo.connect(UTJSC, "onAddSelectionResult", function (_geometries, _markerGeometries) { dojo.forEach(_geometries, function (geom) { var _ESRIGeometry = esri.geometry.fromJson(geom); UTJSC.graphics().getLayer("ResultLayer").add(new esri.Graphic(_ESRIGeometry, _workspace.getMap().getNormalSymbolByType(_ESRIGeometry.type))); }); // Marker-Objekte vorher nach Y sortieren, damit diese ordentlich in der Karte übereinandergezeichnet werden _markerGeometries.sort(function (_markerA, _markerB) { return _markerB.y - _markerA.y; }); dojo.forEach(_markerGeometries, function (geom) { var _ESRIGeometry = new esri.geometry.Point(geom.x, geom.y, geom.spatialReference); var symbol = new esri.symbol.PictureMarkerSymbol('module/utweb/resources/svg/marker/ut-tracing-marker-orange.svg', 40, 40); symbol.setOffset(0, 17); UTJSC.graphics().getLayer("ResultLayer").add(new esri.Graphic(_ESRIGeometry, symbol)); }); }); dojo.connect(UTJSC, "onRemoveSelectionResult", function () { UTJSC.graphics().getLayer("ResultLayer").clear(); }); dojo.connect(UTJSC, "onPrepareRectangleSelection", dojo.hitch(this, function (_workspace) { _workspace.getMap().deactivateSelection(); _workspace.getMap().activateRectangleSelection(function (_result) { console.log(_result); UTJSC.identifyByExtent(_result.xmin, _result.ymin, _result.xmax, _result.ymax); _workspace.getMap().deactivateSelection(); }); }, _workspace)); dojo.connect(UTJSC, "onPrepareRectangleIdentify", dojo.hitch(this, function (_workspace) { _workspace.getMap().deactivateSelection(); _workspace.getMap().activateRectangleSelection(dojo.hitch(this, function (_workspace, _result) { // PAN-Mode setzen, damit der Modus zurückgesetzt wird _workspace.getMode().setMode(6); console.log("utweb | Start onPrepareRectangleIdentify"); var _selectionId = UTJSC._base().getSelectionForm().addSelectionTab_Identify(UTJSC._base().getLanguage().form.selectionform.labelResultIdentify); UTJSC._base().getSelectionForm().showTab(_selectionId); UTJSC._base().getSelectionForm().show(); var _ESRIgeometry = new esri.geometry.fromJson(_result); _ESRIgeometry.setSpatialReference(_workspace.getMap().getMapObject().spatialReference); _workspace.getMap().identifyTask({ geometry: _ESRIgeometry, returnGeometry: false, layerOption: esri.tasks.IdentifyParameters.LAYER_OPTION_ALL, maps: UTJSC._base().getUtServer().getMapIndexes() }, // Erfolgreich function (_serviceResults) { console.log("utweb | onPrepareRectangleIdentify | Result of identify task:", _serviceResults); UTJSC._base().getTransformation().esriIdentifyTaskResultsToUtObjectKeys(function (_utObjKeys) { console.log("utweb | onPrepareRectangleIdentify | Transform result of identifyTask to UT object keys:", _utObjKeys); UTJSC._base().getUtServer().getUtObjects( // Erfolgreich: function (_utObjects) { console.log("utweb | onPrepareRectangleIdentify | Get UT object from server:", _utObjKeys); UTJSC._base().getSelectionForm().add(_utObjects, _selectionId); }, _utObjKeys, true, // [Bug #6501][BUL] Fehlerfall (z.B. Timeout, usw...) function(_error){ console.error("utweb | onPrepareRectangleIdentify | Error in UT server request:", _error); UTJSC._base().getSelectionForm().getTab(_selectionId).getLoadingMsg().error( UTJSC._base().getLanguage().form.selectionform.labelResultIdentifyError, function(){ UTJSC._base().getSelectionForm().removeSelectionTab(_selectionId); }, true, _error.message ); } ); }, _serviceResults); }, // [Bug #6501][BUL] Fehlerfall function (_results){ console.error("utweb | onPrepareRectangleIdentify | Error in identify task:", _results); UTJSC._base().getSelectionForm().getTab(_selectionId).getLoadingMsg().error( UTJSC._base().getLanguage().form.selectionform.labelResultIdentifyError, function(){ UTJSC._base().getSelectionForm().removeSelectionTab(_selectionId); } ); }); _workspace.getMap().deactivateSelection(); }, _workspace)); }, _workspace)); dojo.connect(_workspace.getMap(), "onDataViewChanged", dojo.hitch(this, function (_workspace, _DataView) { // UTServer Verbindungen aus der JSC Konfiguration ermitteln und neu setzen var _urls = _workspace.getConfiguration().getUtwebServiceConfiguration(_workspace.getMap().getServicesConfiguration()); if (_urls != null) { UTJSC._base().getUtServer().createConnections(_urls); } else { // Set default ut server connections UTJSC._base().getUtServer().createConnections(UTJSC._base().getUserConfiguration().getUtServerUrls()); } // Geometrieebene aus der JSC Konfiguration ermitteln UTJSC.setMapLevelPriorityList(utweb.math.convertJscTagsToMapLevelPriorityList(_workspace.getConfiguration().getServiceTags(_DataView))); }, _workspace)); dojo.connect(_workspace.getMap(), "onBasemapChanged", dojo.hitch(this, function (_workspace, _DataView) { var _urls = _workspace.getConfiguration().getUtwebServiceConfiguration(_workspace.getMap().getServicesConfiguration()); if (_urls != null) { UTJSC._base().getUtServer().createConnections(_urls); } else { // Set default ut server connections UTJSC._base().getUtServer().createConnections(UTJSC._base().getUserConfiguration().getUtServerUrls()); } }, _workspace)); dojo.connect(UTJSC, "onPrepareFlagSelection", dojo.hitch(this, function (_workspace, _type) { // PAN-Mode setzen, damit z.B. WebCODI-Modes deaktiviert werden _workspace.getMode().setMode(6); _workspace.getMap().deactivateSelection(); // Cursor setzen dojo.style(dojo.byId("ut_map_esri_layers"), "cursor", "url(module/utweb/image/default/cursors/cursor_set_" + _type.toLowerCase() + ".cur), auto"); _workspace.getMap().activatePointSelection(dojo.hitch(this, function (_workspace, _result) { console.log("utweb | Start onPrepareFlagSelection"); UTJSC._base().getExternalApplication().onStartPointSelectionQuery(_result.x, _result.y, _result.spatialReference.wkid); var _ESRIgeometry = new esri.geometry.fromJson(_result); _ESRIgeometry.setSpatialReference(_workspace.getMap().getMapObject().spatialReference); _workspace.getMap().identifyTask({ geometry: _ESRIgeometry, returnGeometry: false, layerOption: esri.tasks.IdentifyParameters.LAYER_OPTION_ALL, maps: UTJSC._base().getUtServer().getMapIndexes() }, function (_serviceResults) { console.log("utweb | onPrepareFlagSelection | Result of identifyTask:", _serviceResults); UTJSC._base().getTransformation().esriIdentifyTaskResultsToUtObjectKeys(function (_utObjKeys) { console.log("utweb | onPrepareFlagSelection | Transform result of identifyTask to ut object keys:", _utObjKeys); UTJSC._base().getUtServer().getUtObjects(function (_utObjects) { console.log("utweb | onPrepareFlagSelection | Get ut object from server:", _utObjects); if (_utObjects.length > 0) { UTJSC._base().getMapClickResultDialogTooltip().chooseUtGraphicsOfUtObjects(_utObjects, function (_utObject, _utGraphic) { console.log("utweb | onPrepareFlagSelection | Selected Flag:", _utGraphic); if (_type === "FLAG") { UTJSC._base().getTracingForm().addFlag(_utObject, _ESRIgeometry); } else if (_type === "BARRIER") { UTJSC._base().getTracingForm().addBarrier(_utObject, _ESRIgeometry); } else if (_type === "BRIDGE") { UTJSC._base().getTracingForm().addBridge(_utObject, _ESRIgeometry); } }, true); } else { UTJSC._base().getExternalApplication().infoMessage(UTJSC._base().getLanguage().form.tracing.emptyResultSet); } UTJSC._base().getExternalApplication().onEndPointSelectionQuery(); }, _utObjKeys, true); }, _serviceResults); }); _workspace.getMap().deactivateSelection(); // PAN-Mode setzen, damit der Modus zurückgesetzt wird _workspace.getMode().setMode(6); }, _workspace)); }, _workspace)); dojo.connect(UTJSC, "onStartPointSelectionQuery", function (geom) { var symbol = new esri.symbol.PictureMarkerSymbol('module/utweb/image/default/forms/loading_31_blue.gif', 31, 31); UTJSC.graphics().getLayer("PointSelectionLayer").add(new esri.Graphic(esri.geometry.fromJson(geom), symbol)); }); dojo.connect(UTJSC, "onEndPointSelectionQuery", function (geom) { UTJSC.graphics().getLayer("PointSelectionLayer").clear(); }); // DnD Action :-) dojo.connect(_workspace.getMap().getDomNode(), "onmouseup", function () { // DnD Funkionalität if (UTJSC._base().getUserConfiguration().isDragAndDropEnabled()) { if (UTJSC._base().getDndManager().get().dndType !== null) { if (UTJSC._base().getDndManager().get().dndType === "UTOBJECTS") { console.info("DnD - UT-Objects - UtMap", UTJSC._base().getDndManager().get()); if (UTJSC._base().getDndManager().get().dndObject.length > 0) { var _utObjects = UTJSC._base().getDndManager().get().dndObject; UTJSC._base().getExternalApplication().zoomAndHighlightUtObjects(_utObjects); } } } } }); // Neues Fenster für ShowRecord-Maske erzeugen var m_Win_UtShowRecord; if (_workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.showRecord.idWindow) !== null) { m_Win_UtShowRecord = _workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.showRecord.idWindow); if (!_workspace.getContainer().hasWindowCustomLabel(susi.configuration.defaults.gui.ut.showRecord.idWindow)) { m_Win_UtShowRecord.setTitle(UTJSC.forms().showrecord().getWindowHeaderName()); } } else { m_Win_UtShowRecord = _workspace.getGui().createWindow({ "id": susi.configuration.defaults.gui.ut.showRecord.idWindow, "label": UTJSC.forms().showrecord().getWindowHeaderName() }); } // Show Record zuweisen dojo.place(UTJSC.forms().showrecord().getDomNode(), m_Win_UtShowRecord.getContentNode()); UTJSC.forms().showrecord().startup(); dojo.connect(m_Win_UtShowRecord, "onResize", function () { UTJSC.forms().showrecord().refresh(); }); dojo.connect(m_Win_UtShowRecord, "onEndResize", function () { UTJSC.forms().showrecord().refresh(); }); dojo.connect(m_Win_UtShowRecord, "onShow", function () { UTJSC.forms().showrecord().refresh(); }); UTJSC.forms().showrecord().refresh(); dojo.connect(UTJSC.forms().showrecord(), "onClose", function () { m_Win_UtShowRecord.show(false); }); dojo.connect(UTJSC.forms().showrecord(), "onShow", function () { m_Win_UtShowRecord.show(true); }); // Neues Fenster für Locator-Maske erzeugen var m_Win_UtCadastreLocator; if (_workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.cadastrelocator.idWindow) != null) { m_Win_UtCadastreLocator = _workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.cadastrelocator.idWindow); if (!_workspace.getContainer().hasWindowCustomLabel(susi.configuration.defaults.gui.ut.cadastrelocator.idWindow)) { m_Win_UtCadastreLocator.setTitle(UTJSC.forms().cadastrelocator().getWindowHeaderName()); } } else { m_Win_UtCadastreLocator = _workspace.getGui().createWindow({ "id": susi.configuration.defaults.gui.ut.cadastrelocator.idWindow, "label": UTJSC.forms().cadastrelocator().getWindowHeaderName() }); } // Show Record zuweisen dojo.place(UTJSC.forms().cadastrelocator().getDomNode(), m_Win_UtCadastreLocator.getContentNode()); dojo.connect(m_Win_UtCadastreLocator, "onResize", function () { UTJSC.forms().cadastrelocator().refresh(); }); dojo.connect(m_Win_UtCadastreLocator, "onEndResize", function () { UTJSC.forms().cadastrelocator().refresh(); }); dojo.connect(m_Win_UtCadastreLocator, "onShow", function () { UTJSC.forms().cadastrelocator().startup(); UTJSC.forms().cadastrelocator().refresh(); }); UTJSC.forms().cadastrelocator().refresh(); dojo.connect(UTJSC.forms().cadastrelocator(), "onClose", function () { m_Win_UtCadastreLocator.show(false); }); dojo.connect(UTJSC.forms().cadastrelocator(), "onShow", function () { m_Win_UtCadastreLocator.show(true); }); // Neues Fenster für Locator-Maske erzeugen var m_Win_UtAddressLocator; if (_workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.smartlocator.idWindow) !== null) { m_Win_UtAddressLocator = _workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.smartlocator.idWindow); if (!_workspace.getContainer().hasWindowCustomLabel(susi.configuration.defaults.gui.ut.smartlocator.idWindow)) { m_Win_UtAddressLocator.setTitle(UTJSC.forms().addresslocator().windowHeaderName); } } else { m_Win_UtAddressLocator = _workspace.getGui().createWindow({ "id": susi.configuration.defaults.gui.ut.smartlocator.idWindow, "label": UTJSC.forms().addresslocator().windowHeaderName }); } // Show Record zuweisen dojo.place(UTJSC.forms().addresslocator().domNode, m_Win_UtAddressLocator.getContentNode()); dojo.connect(m_Win_UtAddressLocator, "onResize", function () { UTJSC.forms().addresslocator().refresh(); }); dojo.connect(m_Win_UtAddressLocator, "onEndResize", function () { UTJSC.forms().addresslocator().refresh(); }); dojo.connect(m_Win_UtAddressLocator, "onShow", function () { UTJSC.forms().addresslocator().startup(); UTJSC.forms().addresslocator().refresh(); }); UTJSC.forms().addresslocator().refresh(); UTJSC.forms().addresslocator().on("Close", function () { m_Win_UtAddressLocator.show(false); }); UTJSC.forms().addresslocator().on("Show", function () { m_Win_UtAddressLocator.show(true); }); //UTWEB // Neues Fenster für Klassenbaum erzeugen var m_Win_UtClasstree; if (_workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.classtree.idWindow) != null) { m_Win_UtClasstree = _workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.classtree.idWindow); if (!_workspace.getContainer().hasWindowCustomLabel(susi.configuration.defaults.gui.ut.classtree.idWindow)) { m_Win_UtClasstree.setTitle(UTJSC.forms().classtree().windowHeaderName); } } else { m_Win_UtClasstree = _workspace.getGui().createWindow({ "id": susi.configuration.defaults.gui.ut.classtree.idWindow, "label": UTJSC.forms().classtree().windowHeaderName }); } // Show Record zuweisen dojo.place(UTJSC.forms().classtree().domNode, m_Win_UtClasstree.getContentNode()); UTJSC.forms().classtree().startup(); dojo.connect(m_Win_UtClasstree, "onResize", function () { UTJSC.forms().classtree().refresh(); }); dojo.connect(m_Win_UtClasstree, "onEndResize", function () { UTJSC.forms().classtree().refresh(); }); dojo.connect(m_Win_UtClasstree, "onShow", function () { UTJSC.forms().classtree().refresh(); }); UTJSC.forms().classtree().refresh(); dojo.connect(UTJSC.forms().classtree(), "onClose", function () { m_Win_UtClasstree.show(false); }); dojo.connect(UTJSC.forms().classtree(), "onShow", function () { m_Win_UtClasstree.show(true); }); //UTWEB // Neues Fenster für Klassenbaum erzeugen var m_Win_UtSearchForm; if (_workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.searchform.idWindow) !== null) { m_Win_UtSearchForm = _workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.searchform.idWindow); if (!_workspace.getContainer().hasWindowCustomLabel(susi.configuration.defaults.gui.ut.searchform.idWindow)) { m_Win_UtSearchForm.setTitle(UTJSC.forms().searchform().windowHeaderName); } } else { m_Win_UtSearchForm = _workspace.getGui().createWindow({ "id": susi.configuration.defaults.gui.ut.searchform.idWindow, "label": UTJSC.forms().searchform().windowHeaderName }); } // Show Record zuweisen dojo.place(UTJSC.forms().searchform().domNode, m_Win_UtSearchForm.getContentNode()); UTJSC.forms().searchform().startup(); dojo.connect(m_Win_UtSearchForm, "onResize", function () { UTJSC.forms().searchform().refresh(); }); dojo.connect(m_Win_UtSearchForm, "onEndResize", function () { UTJSC.forms().searchform().refresh(); }); dojo.connect(m_Win_UtSearchForm, "onShow", function () { UTJSC.forms().searchform().refresh(); }); dojo.connect(m_Win_UtSearchForm, "onClose", function () { UTJSC.forms().searchform().onClosed(); }); UTJSC.forms().searchform().refresh(); UTJSC.forms().searchform().on("Close", function () { m_Win_UtSearchForm.show(false); }); UTJSC.forms().searchform().on("Show", function () { m_Win_UtSearchForm.show(true); }); UTJSC.forms().searchform().on("TitleChanged", function (_title) { m_Win_UtSearchForm.setTitle(_title); }); //UTWEB // Neues Fenster für Klassenbaum erzeugen var m_Win_UtSearchFieldForm; if (_workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.searchfieldform.idWindow) != null) { m_Win_UtSearchFieldForm = _workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.searchfieldform.idWindow); if (!_workspace.getContainer().hasWindowCustomLabel(susi.configuration.defaults.gui.ut.searchfieldform.idWindow)) { m_Win_UtSearchFieldForm.setTitle(UTJSC.forms().searchfieldform().getWindowHeaderName()); } } else { m_Win_UtSearchFieldForm = _workspace.getGui().createWindow({ "id": susi.configuration.defaults.gui.ut.searchfieldform.idWindow, "label": UTJSC.forms().searchfieldform().getWindowHeaderName() }); } // Show Record zuweisen dojo.place(UTJSC.forms().searchfieldform().getDomNode(), m_Win_UtSearchFieldForm.getContentNode()); UTJSC.forms().searchfieldform().startup(); dojo.connect(m_Win_UtSearchFieldForm, "onResize", function () { UTJSC.forms().searchfieldform().refresh(); }); dojo.connect(m_Win_UtSearchFieldForm, "onEndResize", function () { UTJSC.forms().searchfieldform().refresh(); }); dojo.connect(m_Win_UtSearchFieldForm, "onShow", function () { UTJSC.forms().searchfieldform().refresh(); }); UTJSC.forms().searchfieldform().refresh(); dojo.connect(UTJSC.forms().searchfieldform(), "onClose", function () { m_Win_UtSearchFieldForm.show(false); }); dojo.connect(UTJSC.forms().searchfieldform(), "onShow", function () { m_Win_UtSearchFieldForm.show(true); }); var m_Win_UtSelectionForm; // Neues Fenster für UT-Objektselektion erzeugen if (_workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.selectionform.idWindow) != null) { m_Win_UtSelectionForm = _workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.selectionform.idWindow); if (!_workspace.getContainer().hasWindowCustomLabel(susi.configuration.defaults.gui.ut.selectionform.idWindow)) { m_Win_UtSelectionForm.setTitle(UTJSC.forms().selectionform().windowHeaderName); } } else { m_Win_UtSelectionForm = _workspace.getGui().createWindow({ "id": susi.configuration.defaults.gui.ut.selectionform.idWindow, "label": UTJSC.forms().selectionform().windowHeaderName }); } // UT Objectselection Oberfläche zuweisen dojo.place(UTJSC.forms().selectionform().domNode, m_Win_UtSelectionForm.getContentNode()); UTJSC.forms().selectionform().startup(); dojo.connect(m_Win_UtSelectionForm, "onResize", function () { //UTJSC.forms().selectionform().refresh(); }); dojo.connect(m_Win_UtSelectionForm, "onEndResize", function () { UTJSC.forms().selectionform().refresh(); }); dojo.connect(m_Win_UtSelectionForm, "onShow", function () { UTJSC.forms().selectionform().refresh(); // Selektion des aktiven Tabs erhalten var _utObjects = UTJSC.forms().selectionform().getActiveTab().getUtObjects(); var _markerObjects = UTJSC.forms().selectionform().getActiveTab().getMarkerObjects(); if (_utObjects.length > 0) { // Selektion auf der Karte markieren UTJSC._base().getExternalApplication().addSelectionResult(_utObjects, _markerObjects); // Auf Selektion zoomen UTJSC._base().getExternalApplication().zoomAndHighlightUtObjects(_utObjects); } // [CR #3711][BUL] Flag setzen, dass das Fenster geöffnet ist UTJSC.forms().selectionform().m_IsWindowOpen = true; }); dojo.connect(m_Win_UtSelectionForm, "onHide", function () { UTJSC.forms().selectionform().refresh(); UTJSC._base().getExternalApplication().removeSelectionResult(); // [CR #3711][BUL] Flag setzen, dass das Fenster geschlossen ist UTJSC.forms().selectionform().m_IsWindowOpen = false; }); UTJSC.forms().selectionform().refresh(); dojo.connect(UTJSC.forms().selectionform(), "onClose", function () { m_Win_UtSelectionForm.show(false); }); dojo.connect(UTJSC.forms().selectionform(), "onShow", function () { m_Win_UtSelectionForm.show(true); }); //UTWEB // Neues Fenster für Netzverfolgung erzeugen var m_Win_UtTracingForm; if (_workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.tracingform.idWindow) !== null) { m_Win_UtTracingForm = _workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.tracingform.idWindow); if (!_workspace.getContainer().hasWindowCustomLabel(susi.configuration.defaults.gui.ut.tracingform.idWindow)) { m_Win_UtTracingForm.setTitle(UTJSC.forms().tracing().windowHeaderName); } } else { m_Win_UtTracingForm = _workspace.getGui().createWindow({ "id": susi.configuration.defaults.gui.ut.tracingform.idWindow, "label": UTJSC.forms().tracing().windowHeaderName }); } // UtWeb Tracing-Maske zuweisen dojo.place(UTJSC.forms().tracing().domNode, m_Win_UtTracingForm.getContentNode()); UTJSC.forms().tracing().startup(); dojo.connect(m_Win_UtTracingForm, "onResize", function () { UTJSC.forms().tracing().refresh(); }); dojo.connect(m_Win_UtTracingForm, "onEndResize", function () { UTJSC.forms().tracing().refresh(); }); dojo.connect(m_Win_UtTracingForm, "onShow", function () { UTJSC.forms().tracing().refresh(); }); UTJSC.forms().tracing().refresh(); dojo.connect(UTJSC.forms().tracing(), "onClose", function () { m_Win_UtTracingForm.show(false); }); dojo.connect(UTJSC.forms().tracing(), "onShow", function () { m_Win_UtTracingForm.show(true); }); //UTWEB // Neues Fenster für benutzerdefinierte Suche erzeugen var m_Win_UtCustomSearchForm; if (_workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.customsearchform.idWindow) !== null) { m_Win_UtCustomSearchForm = _workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.customsearchform.idWindow); if (!_workspace.getContainer().hasWindowCustomLabel(susi.configuration.defaults.gui.ut.customsearchform.idWindow)) { m_Win_UtCustomSearchForm.setTitle(UTJSC.forms().customsearchform().windowHeaderName); } } else { m_Win_UtCustomSearchForm = _workspace.getGui().createWindow({ "id": susi.configuration.defaults.gui.ut.customsearchform.idWindow, "label": UTJSC.forms().customsearchform().windowHeaderName }); } // UtWeb Tracing-Maske zuweisen dojo.place(UTJSC.forms().customsearchform().domNode, m_Win_UtCustomSearchForm.getContentNode()); UTJSC.forms().customsearchform().startup(); dojo.connect(m_Win_UtCustomSearchForm, "onResize", function () { UTJSC.forms().customsearchform().refresh(); }); dojo.connect(m_Win_UtCustomSearchForm, "onEndResize", function () { UTJSC.forms().customsearchform().refresh(); }); dojo.connect(m_Win_UtCustomSearchForm, "onShow", function () { UTJSC.forms().customsearchform().refresh(); }); UTJSC.forms().customsearchform().refresh(); dojo.connect(UTJSC.forms().customsearchform(), "onClose", function () { m_Win_UtCustomSearchForm.show(false); }); dojo.connect(UTJSC.forms().customsearchform(), "onShow", function () { m_Win_UtCustomSearchForm.show(true); }); //UTWEB // Neues Fenster für UT-Bewegungsdaten erzeugen var m_Win_UtDynamicDataForm; if (_workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.dynamicdataform.idWindow) !== null) { m_Win_UtDynamicDataForm = _workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.dynamicdataform.idWindow); if (!_workspace.getContainer().hasWindowCustomLabel(susi.configuration.defaults.gui.ut.dynamicdataform.idWindow)) { m_Win_UtDynamicDataForm.setTitle(UTJSC.forms().dynamicdataform().windowHeaderName); } } else { m_Win_UtDynamicDataForm = _workspace.getGui().createWindow({ "id": susi.configuration.defaults.gui.ut.dynamicdataform.idWindow, "label": UTJSC.forms().dynamicdataform().windowHeaderName }); } // UT Objectselection Oberfläche zuweisen dojo.place(UTJSC.forms().dynamicdataform().domNode, m_Win_UtDynamicDataForm.getContentNode()); UTJSC.forms().dynamicdataform().startup(); dojo.connect(m_Win_UtDynamicDataForm, "onResize", function () { UTJSC.forms().dynamicdataform().refresh(); }); dojo.connect(m_Win_UtDynamicDataForm, "onEndResize", function () { UTJSC.forms().dynamicdataform().refresh(); }); dojo.connect(m_Win_UtDynamicDataForm, "onShow", function () { UTJSC.forms().dynamicdataform().refresh(); }); UTJSC.forms().dynamicdataform().refresh(); dojo.connect(UTJSC.forms().dynamicdataform(), "onClose", function () { m_Win_UtDynamicDataForm.close(); }); dojo.connect(UTJSC.forms().dynamicdataform(), "onShow", function () { m_Win_UtDynamicDataForm.show(true); }); // TEMPORÄRE EDITIERFORM // Solange das UT Editieren nicht über die ShowRecord-Form läuft, muss eine separate Editierform bereitgestellt werden if (UTJSC._base().getUserConfiguration().isEditingEnabled()) { var m_Win_EditRecord; if (_workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.editRecord.idWindow) !== null) { m_Win_EditRecord = _workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.editRecord.idWindow); if (!_workspace.getContainer().hasWindowCustomLabel(susi.configuration.defaults.gui.ut.editRecord.idWindow)) { m_Win_EditRecord.setTitle(UTJSC._base().getEditRecordForm().getWindowHeaderName()); } } else { m_Win_EditRecord = _workspace.getGui().createWindow({ "id": susi.configuration.defaults.gui.ut.editRecord.idWindow, "label": UTJSC._base().getEditRecordForm().getWindowHeaderName() }); } // UT Objectselection Oberfläche zuweisen dojo.place(UTJSC._base().getEditRecordForm().getDomNode(), m_Win_EditRecord.getContentNode()); UTJSC._base().getEditRecordForm().startup(); dojo.connect(m_Win_EditRecord, "onResize", function () { UTJSC._base().getEditRecordForm().refresh(); }); dojo.connect(m_Win_EditRecord, "onEndResize", function () { UTJSC._base().getEditRecordForm().refresh(); }); dojo.connect(m_Win_EditRecord, "onShow", function () { UTJSC._base().getEditRecordForm().refresh(); }); dojo.connect(m_Win_EditRecord, "onClose", function () { // Event an die Sachdatenmaske weiterreichen um offene Dialoge zu schließen UTJSC._base().getEditRecordForm().onClosed(); }); UTJSC._base().getEditRecordForm().refresh(); UTJSC._base().getEditRecordForm().on("Close", function () { m_Win_EditRecord.show(false); }); UTJSC._base().getEditRecordForm().on("Show", function () { m_Win_EditRecord.show(true); }); UTJSC._base().getEditRecordForm().on("TitleChanged", function (_newTitle) { m_Win_EditRecord.setTitle(_newTitle); }); // Neues Fenster für den Editing Manager erzeugen var m_Win_UtEditManagerForm; if (_workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.editmanagerform.idWindow) !== null) { m_Win_UtEditManagerForm = _workspace.getGui().getWindowById(susi.configuration.defaults.gui.ut.editmanagerform.idWindow); if (!_workspace.getContainer().hasWindowCustomLabel(susi.configuration.defaults.gui.ut.editmanagerform.idWindow)) { m_Win_UtEditManagerForm.setTitle(UTJSC.forms().editing().windowHeaderName); } } else { m_Win_UtEditManagerForm = _workspace.getGui().createWindow({ "id": susi.configuration.defaults.gui.ut.editmanagerform.idWindow, "label": UTJSC.forms().editing().windowHeaderName }); } // UtWeb Editing Manager-Maske zuweisen dojo.place(UTJSC.forms().editing().domNode, m_Win_UtEditManagerForm.getContentNode()); UTJSC.forms().editing().startup(); dojo.connect(m_Win_UtEditManagerForm, "onResize", function () { UTJSC.forms().editing().refresh(); }); dojo.connect(m_Win_UtEditManagerForm, "onEndResize", function () { UTJSC.forms().editing().refresh(); }); dojo.connect(m_Win_UtEditManagerForm, "onShow", dojo.hitch(this, function (_workspace) { UTJSC.forms().editing().refresh(); }, _workspace)); UTJSC.forms().editing().refresh(); dojo.connect(m_Win_UtEditManagerForm, "onClose", dojo.hitch(this, function (_workspace) { // [Bug #5220][BUL] Modus beim Schließen auf den aktiven UTJSC-Modus zurücksetzen, wenn CODI-Modus aktiv ist if (codiUtEditContainer.getWorkspace().getMode().getCurrentMode() !== "EXTERNAL_APPLICATION") { // Modus des UTJSC zurück setzen // _workspace.getMap().getModeController().setMode(_workspace.getMap().getModeController().getMode()); // Liste der selektierten UT-Objekte leeren codiUtEditContainer.getWorkspace().getSelectedObjects().resetSelectedObjectList(); // Codi deaktivieren _workspace.getMode().deactivateCodi(); } }, _workspace)); dojo.connect(UTJSC.forms().editing(), "onClose", function () { m_Win_UtEditManagerForm.show(false); }); dojo.connect(UTJSC.forms().editing(), "onShow", function () { m_Win_UtEditManagerForm.show(true); }); } // exec-Query-Parameter if (_workspace.getContainer().getQueryParameters().exec != null) { UTJSC.exec(_workspace.getContainer().getQueryParameters().exec); } }, _workspace)); }, _workspace)); } } }); //# sourceURL=utweb.js // --------------------------------------------------------------------- // JS code of module webnav // --------------------------------------------------------------------- /** * * Produkt: UTJSC * Version: 4.0.1757 * * Copyright by BARAL Geohaus-Consulting AG, 1999-2019 * * BARAL Geohaus-Consulting AG * Ludwig-Erhard-Straße 54, D-72760 Reutlingen * Telefon +49 7121 9464 0 * * DIESE DATEI ODER INHALTE DIESER DATEI DUERFEN NICHT OHNE AUSDRUECKLICHE ERLAUBNIS * DER FIRMA BARAL GEOHAUS-CONSULTING AG, REUTLINGEN VERAENDERT, KOPIERT ODER * AN DRITTE WEITERGEGEBEN WERDEN. * */ dojo.connect(susi.event, "onInitExtensions", function(_conf) { var _searchModule = UTWebContainer.getWorkspace().getConfiguration().getModule("search"); var moduleConf = null; if (_searchModule !== null && _searchModule.enable && _searchModule.provider && Array.isArray(_searchModule.provider)) { for (var i = 0; i < _searchModule.provider.length; i++) { if (_searchModule.provider[i].type && _searchModule.provider[i].type === "webnav") { moduleConf = _searchModule.provider[i]; break; } } } if (moduleConf !== null && moduleConf.enable) { var _home = "../webnav/"; if (typeof(moduleConf.url) !== "undefined"){ _home = moduleConf.url; if (_home.slice(-1) !== "/") { _home = _home + "/"; } } UTWebContainer.loadModuleJSFiles({ "source": [ _home + "js/webnav.pro.dev.js", _home + "js/jquery.js", _home + "js/jquery-ui.js", _home + "user/script/custom.js" ], "uncompressed": [ _home + "js/webnav.pro.uncompressed.js", _home + "user/script/custom.js" ], "compressed": [ _home + "js/webnav.pro.js", _home + "user/script/custom.js" ] }, function() { UTWebContainer.loadModuleCSSFiles({ "source": [ _home + "css/pro.css", "module/webnav/css/webnav.pro.utjsc.css", ] }); var parentDiv; // Styling ermitteln var wnpStyle = moduleConf.style ? moduleConf.style : "map"; if (wnpStyle === "top") { parentDiv = dojo.create("div", { "class": "jscWebNavSearchTop" }, dojo.byId("SUSI")); } else { parentDiv = dojo.create("div", { "class": "jscWebNavSearchMap" }, UTWebContainer.getWorkspace().getMap().getDomNode()); } var _config = "default"; if(typeof(moduleConf.useDataviewNameAsConfig) !== "undefined" && moduleConf.useDataviewNameAsConfig === true && typeof(UTWebContainer.getWorkspace().getContainer().getQueryParameters().dataview) === "string"){ _config = UTWebContainer.getWorkspace().getContainer().getQueryParameters().dataview; } else if (moduleConf.config) { _config = moduleConf.config; } NAV = new webnav_pro({ "parent": parentDiv, "configHome": _home, "config": _config, "sourcePicker": (typeof moduleConf.sourcePicker ==="boolean") ? moduleConf.sourcePicker : true, "resultListStyle": moduleConf.resultListStyle ? moduleConf.resultListStyle : "normal" }); var _hotkeyConfig = "alt + f"; if(typeof moduleConf.hotkey === "string"){ _hotkeyConfig = moduleConf.hotkey; } UTWebContainer.getWorkspace().getKeyboardEventManager().on(_hotkeyConfig, function() {}, function() { NAV.focus(); }); } ); if(typeof(moduleConf.useDataviewNameAsConfig) !== "undefined" && moduleConf.useDataviewNameAsConfig === true){ dojo.connect( UTWebContainer.getWorkspace().getMap(), "onDataViewChanged", function(_DataView){ changeWebNAVConf(_DataView) }); function changeWebNAVConf(_DataView) { var parentDiv; dojo.query(".jscWebNavSearchMap").forEach(function(node, index, arr){ parentDiv = node; dojo.empty(node); }); var _home = moduleConf.url; NAV = new webnav_pro({ "parent": parentDiv, "configHome": _home, "config": _DataView, "sourcePicker": (typeof moduleConf.sourcePicker ==="boolean") ? moduleConf.sourcePicker : true, "resultListStyle": moduleConf.resultListStyle ? moduleConf.resultListStyle : "normal" }); } } } }); // --------------------------------------------------------------------- // JS code of module wmps // --------------------------------------------------------------------- /** * * Produkt: UTJSC * Version: 4.0.1757 * * Copyright by BARAL Geohaus-Consulting AG, 1999-2019 * * BARAL Geohaus-Consulting AG * Ludwig-Erhard-Straße 54, D-72760 Reutlingen * Telefon +49 7121 9464 0 * * DIESE DATEI ODER INHALTE DIESER DATEI DUERFEN NICHT OHNE AUSDRUECKLICHE ERLAUBNIS * DER FIRMA BARAL GEOHAUS-CONSULTING AG, REUTLINGEN VERAENDERT, KOPIERT ODER * AN DRITTE WEITERGEGEBEN WERDEN. * */ dojo.connect(susi.event, "onInitExtensions", function(_conf) { var moduleConf = UTWebContainer.getWorkspace().getConfiguration().getModule("wmps"); if (moduleConf !== null) { if (moduleConf.enable === true) { // Create namespace wmps = {}; // [CR #4542][BUL] Schnittstelle zu den Custom Plot Widgets erzeugen wmps.custom = { plotWidgets : {} }; // Load module css files UTWebContainer.loadModuleCSSFiles({ "source": ["module/wmps/css/default/src/wmps.css"], "uncompressed": ["module/wmps/css/default/" + susi.configuration.defaults.version + "/wmps_uncompressed.css"], "compressed": ["module/wmps/css/default/" + susi.configuration.defaults.version + "/wmps_compressed.css"], }); // Load module js files UTWebContainer.loadModuleJSFiles({ "source": [ "module/wmps/js/src/wmps.basic", "module/wmps/js/src/wmps.external", "module/wmps/js/src/wmps.forms", "module/wmps/js/src/wmps.graphic", "module/wmps/js/src/wmps.services" ], "uncompressed": [ "module/wmps/js/" + susi.configuration.defaults.version + "/wmps_uncompressed" ], "compressed": [ "module/wmps/js/" + susi.configuration.defaults.version + "/wmps_compressed" ] }, function() { require([ "wmps/language/language" ], function() { WMPS = new wmps.basic.base(); WMPS.init( moduleConf.url, susi.configuration.defaults.wmps.proxyUrl, susi.configuration.defaults.wmps.resultUrl, moduleConf, UTWebContainer.getWorkspace().getConfiguration().getLanguage() ); var m_Win_WMPS; if (UTWebContainer.getWindowById(susi.configuration.defaults.gui.wmps.idWindow) !== null) { m_Win_WMPS = UTWebContainer.getWindowById(susi.configuration.defaults.gui.wmps.idWindow); if (!UTWebContainer.hasWindowCustomLabel(susi.configuration.defaults.gui.wmps.idWindow)) { m_Win_WMPS.setTitle(UTWebContainer.getWorkspace().getLanguage().gui.wmps.labelHeader); } } else { m_Win_WMPS = UTWebContainer.createWindow({ "id": susi.configuration.defaults.gui.wmps.idWindow, "label": UTWebContainer.getWorkspace().getLanguage().gui.wmps.labelHeader }); } dojo.place(WMPS.getPlotMask().getDomNode(), m_Win_WMPS.getContentNode()); dojo.connect(m_Win_WMPS, "onHide", function() { UTWebContainer.setMode("NONE"); }); //CR #4155 Integration von Grafiken aus UT-Objektlisten in den Plot // Bei aktiven UT Modul müssen die aktiven Ergebnissgrafiken in den Plot integriert werden WMPS.addEsriGraphicsIntegration(function() { if (typeof UTJSC !== "undefined") { return UTJSC.graphics().getLayers().ResultLayer.graphics; } return; }); susi.event.onModuleLoaded("wmps"); }); }); } } }); //# sourceURL=https://netzauskunft.ob-netz.de:443/utjsc/js/mergedScripts.js