Thanks Mike! It works great now. I found that the App did not Zoom-In to the parcel so I modified the following code. Please see
below:
Utils.js line 115 before:
//Get the extent based on the mappoint
function GetBrowserMapExtent(mapPoint) {
var extent = map.extent;
var width = extent.getWidth();
var height = extent.getHeight();
var xmin = mapPoint.x - ((2 * width) / 2.8);
var ymin = mapPoint.y - (height / 4);
var xmax = xmin + width;
var ymax = ymin + height;
return new esri.geometry.Extent(xmin, ymin, xmax, ymax, map.spatialReference);
}
Utils.js line 115 after:
function GetBrowserMapExtent(mapPoint) {
// Added code to Zoom to selected Parcel
var extent;
if (map.getLayer(tempParcelLayerId).graphics.length > 0) {
extent = map.getLayer(tempParcelLayerId).graphics[0].geometry.getExtent().expand(6);
}
else {
extent = map.extent;
}
var width = extent.getWidth();
var height = extent.getHeight();
var xmin = mapPoint.x - ((2 * width) / 2.8);
var ymin = mapPoint.y - (height / 4);
var xmax = xmin + width;
var ymax = ymin + height;
return new esri.geometry.Extent(xmin, ymin, xmax, ymax, map.spatialReference);
}
==============================================
All the Best,
David