public static class

ArcGISFeatureLayer.Options

extends Object
java.lang.Object
   ↳ com.esri.android.map.ags.ArcGISFeatureLayer.Options

Class Overview

The options to instantiate the feature layer.

Summary

Fields
public InfoTemplate infoTemplate The template defines the content to display in the map info window when the user clicks on a feature.
public double maxAllowableOffset This is only applicable for feature layers that are not editable.
public ArcGISFeatureLayer.MODE mode Specify the layers mode of operation.
public String[] outFields An array of field names to include in the feature layer.
Public Constructors
ArcGISFeatureLayer.Options()
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public InfoTemplate infoTemplate

The template defines the content to display in the map info window when the user clicks on a feature. If not specified, the info window will not be displayed.

public double maxAllowableOffset

This is only applicable for feature layers that are not editable. The maximum allowable offset used for generalizing geometries returned by the query operation. The default is 0. If 0 is specified the value is not passed to the server in a query. The offset is in the units of the spatialReference.

public ArcGISFeatureLayer.MODE mode

Specify the layers mode of operation. Each mode determines when and how many features are sent to the client. By default, it is SNAPSHOT mode.

public String[] outFields

An array of field names to include in the feature layer. If not specified, the feature layer will return all fields, you can also optionally use "*" to return all fields. The ObjectId field will always be included in the feature layer even if not specified here.

Public Constructors

public ArcGISFeatureLayer.Options ()