/*Example of a class selector, using a period in front of an HTML elment allows you to specify a style for multiple elements. All elements with a class attribute set to the specified value will have this style applied.*/ .shadow { padding:8px; -moz-border-radius: 6px; -webkit-border-radius: 6px; -moz-box-shadow: 0px 6px 3px -3px #888; -webkit-box-shadow: 0px 6px 3px -3px #888; box-shadow: 0px 6px 3px -3px #888; background-color:white; border: solid 4px #80a8c1; } </style> <script type="text/javascript">djConfig = { parseOnLoad:true }</script> <script type="text/javascript" src="http://serverapi.arcgisonline.com/jsapi/arcgis/?v=1.6"></script> <script type="text/javascript" src="http://serverapi.arcgisonline.com/jsapi/arcgis/?v=2.1"></script>
function extentHistoryChangeHandler() { dijit.byId("zoomprev").disabled = navToolbar.isFirstExtent(); dijit.byId("zoomnext").disabled = navToolbar.isLastExtent();
}
function resizeMap() { //resize the map when the browser resizes - view the 'Resizing and repositioning the map' section in //the following help topic for more details http://help.esri.com/EN/webapi/javascript/arcgis/help/jshelp_start.htm#jshelp/inside_faq.htm var resizeTimer; clearTimeout(resizeTimer); resizeTimer = setTimeout(function() { map.resize(); map.reposition(); }, 500); }