define([ "dojo/_base/declare", "dojo/_base/lang", "customDojo/map/OLMapWidget", "../_Plugin" ], function(declare, lang, OLMapWidget, _Plugin){ var PluginExample = declare("customDojo.map.plugins.PluginExample", _Plugin, { // summary: // name: String // plugin name name: "pluginExample", constructor: function(olMapWidget, args){ // summary: // See constructor of dojox.grid.enhanced._Plugin. this.olMapWidget = olMapWidget; this.nls = nls; args = this.args = lang.isObject(args) ? args : {}; //eventually use args // ... //eventually connect to olMapWidget function //this.connect(olMapWidget, "olMapWidgetFunctionName", function(obj){ // ... //}); }, onPreInit: function(){ //add if needed }, onPostInit: function(){ //add if needed }, onStartUp: function(){ //add if needed //TODO } }); //registering plugin var props = null; //Object, optional OLMapWidget.registerPlugin(PluginExample, props); //ex: //olMapWidget.registerPlugin(customDojo.map.plugins.PluginExample /*definition of a plugin*/, {"preInit": false, "dependency": ["aaa_bbb"]} /*properties*/) return PluginExample; });