require([ 'dojo/topic', 'customDojo/map/OLMapWidget', gwContextPath+'/resources/'+gwRevision+'/debug/customDojo/map/plugin/GwCustomPlugin.js' //this way it works even with useCompressedImports=true ], function(topic, OLMapWidget, Furniture){ //do nothing, simply require plugin to add to OLMapWidget }); /** * F U R N I T U R E C O M M A N D */ require( ['dojo/_base/declare', 'dojo/ready', gwContextPath+'/resources/'+gwRevision+'/'+importPath+'customDojo/map/mapCommands.js'], function(declare, ready){ ready(function(){ console.log('pluginCommands); var doDeclare = function(){ console.log('pluginCommands - doDeclare()'); //Dummy mapCommand declare('CustomPluginCommand', MapCommand, { name: 'CustomPluginCommand', iconClass: 'iconDone', exclusive: false, category: 'edit-custom-plugin, buttonType: 'CommandButton', execute: function(/*Object*/ params){ console.log('CustomPluginCommand \''+this.name+'\'- execute()'); this.inherited(arguments); var that = this; var olMapWidget = this._map.olMapWidget; //TODO } }); } if(window['MapCommand']!=null){ doDeclare(); }else{ var handle = window.setInterval(function(){ if(window['MapCommand']!=null){ window.clearInterval(handle); doDeclare(); } }, 0); } }); } );