define([
"esri/map",
"dojo/_base/declare"
],
function (map, declare)
{
//widget declaration
return declare("my.Map", [map],
{
constructor : function () {},
postCreate : function ()
{
this.inherited(arguments);
}
}
);
}
);