How I can get map extent in the widget (minX, minY, maxX, maxY).
I am getting type error in the widget. Could you please guide
var minxx = this.map.extent.getMinx(); //TypeError: this.map.extent.xMin is not a function
var minxx = this.map.getMinx(); //TypeError: this.map.extent.xMin is not a function
Raju,
Try:
var minxx = this.map.extent.minx;