Oracle Fusion Middleware Data Visualization Tools Tag Reference for Oracle ADF Faces 11g Release 1 (11.1.1.9.0) E52938-01 |
UIComponent class: oracle.adf.view.faces.bi.component.thematicMap.UIPointDataLayer
Component type: oracle.dss.adf.thematicMap.PointDataLayer
The pointDataLayer allows developers to display data associated with a point on the map using a marker or an image. The point can be a city in the built-in city layer or an application developer can defined a point by specifying the latitude/longitude. The table belows shows an example
Type | Tag Sample | Sample Image |
---|---|---|
Marker |
<dvt:pointDataLayer id="pointLayer" value="#{tmapBean.cityModel}" var="row" varStatus="rowStatus" contentDelivery="immediate" <dvt:pointLocation id="pointLoc" type="pointName" pointName="#{row.name}"> <dvt:marker id="m1" shape="circle" fillColor="#{row.color}" opacity="#{row.opacity}" scaleX="#{row.size}" scaleY="#{row.size}"> </dvt:marker> </dvt:pointLocation> </dvt:pointDataLayer> |
![]() |
The pointDataLayer uses a model to access the data in the underlying list. The specific model class is oracle.adf.view.rich.model.CollectionModel. You may also use other model instances, e.g., java.util.List, array, and javax.faces.model.DataModel. The pointDataLayer will automatically convert the instance into a CollectionModel.
<dvt:pointDataLayer id="dataLayer" contentDelivery="immediate" value="#{tmapTargetActualBean.model}" var="row" varStatus="rowStatus">
In the pointDataLayer tag above, the model is specified in the value attribute by an EL expression. The stateData JavaBean contains the actual collection model. Each object in the model is accessed by referencing the EL variable specified by the var attribute in the areaLocation and area tags. At a minimum each object in the collection model must specify a region name that maps to a basemap region name. By specifying additional values for objects in the collection model, the fill color, description, and other attributions of a basemap region can be controlled.
<dvt:areaLocation id="areaLoc" name="#{row.name}"> <dvt:area id="area" fillColor="#{tmapTargetActualBean.colorObj}" shortDesc="#{tmapTargetActualBean.tooltip}"/>
The selection feature of a pointDataLayer lets the user select one or more regions or markers in the map. The user can then perform some operation on the selected rows. The application developer can add its own listener code through the selectionListener attribute to work on the selected data.
<dvt:pointDataLayer value="#{stateData.employmentData}" var="row" varStatus="rowStatus" selectionMode="multiple" selectionListener="#{tmapEventBean.processSelection}"< public void processSelection(SelectionEvent selectionEvent){ UIPointDataLayer dataLayer = (UIAreaDataLayer)selectionEvent.getSource(); CollectionModel model = (CollectionModel)dataLayer.getValue(); RowKeySet selectedSet = dataLayer.getSelectedRowKeys(); ... }
The <dvt:pointDataLayer> tag can have the following children:
Type | Phases | Description |
---|---|---|
org.apache.myfaces.trinidad.event.AttributeChangeEvent | Invoke Application, Apply Request Values |
Event delivered to describe an attribute change. Attribute change events are not delivered for any programmatic change to a property. They are only delivered when a renderer changes a property without the application's specific request. An example of an attribute change events might include the width of a column that supported client-side resizing. |
Name | Type | Supports EL? | Description |
---|---|---|---|
animationDuration | int | Yes | Specifies the animation duration in milliseconds. The default value is 1000. |
animationOnDataChange | String | Yes | Valid Values: none, alphaFade, conveyorFromLeft, conveyorFromRight, cubeToLeft, cubeToRight, flipLeft, flipRight, slideToLeft, slideToRight, transitionToLeft, transitionToRight, zoom Specifies the type of animation to apply when the value of this pointDataLayer changes. Valid values are:
|
attributeChangeListener | javax.el.MethodExpression | Only EL | A method reference to an attribute change listener |
binding | String | Only EL | Binding reference to store the UIPointDataLayer component |
contentDelivery | String | Yes | Valid Values: lazy, immediate, whenAvailable Specifies whether data should be fetched when the component is rendered initially. Valid values are:
|
emptyText | String | Yes | The text to display in the legend when the pointDataLayer has no data |
id | String | No | The identifier for the component |
partialTriggers | String[] | Yes | The IDs of the components that should trigger a partial update. This component will listen on the trigger components. If one of the trigger components receives an event that will cause it to update in some way, this component will request to be updated too. Identifiers are relative to the source component (this component), and must account for NamingContainers. If your component is already inside of a naming container, you can use a single colon to start the search from the root of the page, or multiple colons to move up through the NamingContainers - "::" will pop out of the component's naming container (or itself if the component is a naming container) and begin the search from there, ":::" will pop out of two naming containers (including itself if the component is a naming container) and begin the search from there, etc. |
rendered | boolean | Yes | Specifies whether the component is rendered. The default value is true. |
selectedRowKeys | org.apache.myfaces.trinidad.model.RowKeySet | Yes | A method reference to a selection listener |
selectionListener | javax.el.MethodExpression | Only EL | A method reference to a selection listener |
selectionMode | String | Yes | Valid Values: none, single, multiple Specifies whether regions/markers in an area data layer can be selected or not. Valid values are:
|
shortDesc | String | Yes | The short description for the component |
value | String | Yes | The data model being used by the pointDataLayer. The specific model class is org.apache.myfaces.trinidad.model.CollectionModel. You may also use other model instances, e.g., java.util.List , array, and javax.faces.model.DataModel. The pointDataLayer will automatically convert the instance into a CollectionModel. |
var | String | Yes | Name of the EL variable used to reference each element of this Collection. Once this component has completed rendering, this variable is removed (or reverted back to its previous value). |
varStatus | String | Yes | Name of the EL variable used to reference the varStatus information. Once this component has completed rendering, this variable is removed (or reverted back to its previous value). The VarStatus provides contextual information about the state of the component to EL expressions. For components that iterate, varStatus also provides loop counter information. Please see the this component's documentation for the specific properties on the varStatus. The common properties on varStatus include:
|