| |||||||
FRAMES NO FRAMES |
<%@ taglib prefix="adf" uri="http://www.esri.com/adf/web" %>
<anyxmlelement xmlns:adf="http://www.esri.com/adf/web" />
This Tag Library contains WebADF's JavaServer Faces (JSF) component tags for visualization and analysis of geographic data.
Tag Library Information | |
Display Name | None |
Version | 10.0 |
Short Name | adf |
URI | http://www.esri.com/adf/web |
Tag Summary | |
context | Provides a context for all the Web ADF components to work within. It is invisible in the HTML view of the page. For example: <a:context id="mycontext" value=#{mapContext} /> |
map | Renders a Map on the page by aggregating map images from all the services in the application. For example: <a:map id="map1" value="#{mapContext.webMap} scalebar="#{mapContext.attributes.webappScaleBar} width="400" height="400" /> |
overview | Renders an Overview map for the associated Map component. The Overview map displays an area-of-interest box representing the current extent of the associated Map. For example: <a:overview id="ov1" mapId="map1" value=#{mapContext.webOverview} width="70" height="70" /> |
toc | Renders a Table-of-Contents (TOC) for the associated Map component. The TOC is a tree-like structure showing the different services in the application and their constituent layers in a hierarchial fashion. For example: <a:toc id="toc1" mapId="map1" value=#{mapContext.webToc} width="70" height="300" /> |
toolbar | Renders a ToolBar on the page. The Toolbar hosts constituent components like Command, Tool, and SelectOne. These components allow the user to invoke operations with or without interacting with the Map. For example: <a:toolbar id="toolbar1" mapId="map1" activeTool="ZoomIn"> |
tool | Renders a Tool within a ToolBar component. When activated, Tool components allow the user to interact with the map (for eg, clicking on a location, or drawing a shape). Once the interaction is complete, a method on a server-side Java object is invoked. For example: <a:toolbar id="toolbar1" mapId="map1" activeTool="ZoomIn"> |
command | Renders a Command within a ToolBar component. When activated, Command components invoke a method on a server-side Java object. For example: <a:toolbar id="toolbar1" mapId="map1"> |
selectOne | Renders a drop-down list within a ToolBar component. The list invokes a method on a server-side Java object when it's value is changed. For example: <a:toolbar id="toolbar1" mapId="map1"> |
separator | Renders a separator within the ToolBar component. Separators are typically used to group logically related components in the ToolBar For example: <a:toolbar id="toolbar1" mapId="map1"> |
task | Renders a Task on the page. Tasks are functional units that accomplish a business operation in the application. Please refer to the Task Framework documentation for more information. For example: <a:task id="myTask" mapId="map1" value="#{mapContext.attributes.myTask}" taskInfo="#{mapContext.attributes.myTask.taskInfo}" /> |
results | Renders a tree-like structure to display results on the page. For example: <a:results id="results" mapId="map1" value="#{mapContext.attributes.webappResults}" xslFile="results.xsl" /> |
button | Renders a Button on the page which invokes a method on a server-side Java object using AJAX (it does not force a full-page postback). It can also optionally allow the user to interact with the map (for eg. click on a location, draw a shape, etc) before invoking the method. For example: <a:button id="btn1" mapId="map1" type="button" value="Click Here" |
| |||||||
FRAMES NO FRAMES |