How does the extent work on the Tax Parcel Viewer with js api? I'm just downloaded and am configuring the it from here . I can't seem to get the map extent to show my entire community.
On the config.js page I am setting DefaultExtent as follows (line101):
// Initial map extent. Use comma (,) to separate values and don't delete the last comma
DefaultExtent: " 955000,740000,1010000,776000",
It zooms to our community but no matter how large I make the extent, the map extent appears to remain fixed. I've searched and stepped through the code but can't figure out what's controlling this. I know the values are passing properly when I look here on homePage.js (line 256):
mapExtent = new esri.geometry.Extent(parseFloat(mapExtent[0]), parseFloat(mapExtent[1]), parseFloat(mapExtent[2]), parseFloat(mapExtent[3]), map.spatialReference);
map.setExtent(mapExtent);
Anybody have some guidance for me?