View on GitHub Sample viewer app

Use different feature request modes to populate the map from a service feature table.

Screenshot of set feature request mode

Use case

Feature tables can be initialized with a feature request mode which controls how frequently features are requested and locally cached in response to panning, zooming, selecting, or querying. The feature request mode affects performance and should be chosen based on considerations such as how often the data is expected to change or how often changes in the data should be reflected to the user.

  • OnInteractionCache - fetches features within the current extent when needed (after a pan or zoom action) from the server and caches those features in a table on the client. Queries will be performed locally if the features are present, otherwise they will be requested from the server. This mode minimizes requests to the server and is useful for large batches of features which will change infrequently.

  • OnInteractionNoCache - always fetches features from the server and doesn’t cache any features on the client. This mode is best for features that may change often on the server or whose changes need to always be visible.

    NOTE: No cache does not guarantee that features won’t be cached locally. Feature request mode is a performance concept unrelated to data security.

  • ManualCache - only fetches features when explicitly populated from a query. This mode is best for features that change minimally or when it is not critical for the user to see the latest changes.

How to use the sample

Choose a request mode by clicking on the drop down menu. Pan and zoom to see how the features update at different scales. If you choose “Manual cache”, click the “Populate” button to manually get a cache with a subset of features.

Note: The service limits requests to 2000 features.

How it works

  1. Create a ServiceFeatureTable with a feature service URL and use it to create a FeatureLayer.
  2. Add the feature layer to the map’s operational layers.
  3. Set the FeatureRequestMode property of the service feature table to the desired mode (OnInteractionCache, OnInteractionNoCache, or ManualCache).
    • If using ManualCache, populate the features with ServiceFeatureTable.populateFromService(...).

Relevant API

  • FeatureLayer
  • ServiceFeatureTable
  • ServiceFeatureTable.FeatureRequestMode

About the data

This sample uses the Trees of Portland service showcasing over 200,000 street trees in Portland, OR. Each tree point models the health of the tree (green - better, red - worse) as well as the diameter of its trunk.

Tags

cache, data, feature, feature request mode, performance

Sample Code

MainActivity.kt MainActivity.kt SetFeatureRequestModeViewModel.kt SetFeatureRequestModeScreen.kt
/* Copyright 2025 Esri
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package com.esri.arcgismaps.sample.setfeaturerequestmode
import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.activity.enableEdgeToEdge
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Surface
import androidx.compose.runtime.Composable
import com.arcgismaps.ApiKey
import com.arcgismaps.ArcGISEnvironment
import com.esri.arcgismaps.sample.sampleslib.theme.SampleAppTheme
import com.esri.arcgismaps.sample.setfeaturerequestmode.screens.SetFeatureRequestModeScreen
class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
// authentication with an API key or named user is
// required to access basemaps and other location services
ArcGISEnvironment.apiKey = ApiKey.create(BuildConfig.ACCESS_TOKEN)
enableEdgeToEdge()
setContent {
SampleAppTheme {
SetFeatureRequestModeApp()
}
}
}
@Composable
private fun SetFeatureRequestModeApp() {
Surface(color = MaterialTheme.colorScheme.background) {
SetFeatureRequestModeScreen(
sampleName = getString(R.string.set_feature_request_mode_app_name)
)
}
}
}