You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
832 B
30 lines
832 B
define([ |
|
"dojo/_base/declare", |
|
"esri/widgets/Home" |
|
|
|
], function( |
|
declare, |
|
Home, |
|
) { |
|
return declare( null, { |
|
constructor: function(view){ |
|
let homeButtonWidget = new Home({ |
|
view: view, |
|
container: HomeButton |
|
}); |
|
|
|
// var bc = new BorderContainer({ |
|
// style: "height: 100%; width: 250px; position: fixed; right:0; left:0; z-index:1; top: 28px;" |
|
// }); |
|
// var cp1 = new ContentPane({ |
|
// region: "left", |
|
// style: "width: 250px; background-color: dimgrey; background: rgba(0,0,0,0.5);", |
|
// content: "Layer List" |
|
// }); |
|
// bc.addChild(cp1); |
|
// bc.placeAt("nav"); |
|
// bc.startup(); |
|
} |
|
}); |
|
|
|
}); |