Skip to content
View on GitHubSample viewer app

Get the draw status of your map view or scene view to know when all layers in the map or scene have finished drawing.

Image of monitor changes to draw status

Use case

Display an indicator of layers drawing.

How to use the sample

  1. Pan and zoom around the map.
  2. Observe the draw status text in the toolbar and the progress indicator while the map is drawing.

How it works

  1. Create an ArcGISMap.
  2. Pass the ArcGISMap to the Compose MapView.
  3. Use the MapView's onDrawStatusChanged callback to receive DrawStatus updates

Relevant API

  • ArcGISMap
  • DrawStatus
  • MapView

Tags

draw, loading, map, render

Sample Code

MonitorDrawStatusViewModel.ktMonitorDrawStatusViewModel.ktMainActivity.ktMonitorDrawStatusScreen.kt
Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* 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.monitorchangestodrawstatus.components

import android.app.Application
import androidx.lifecycle.AndroidViewModel
import androidx.lifecycle.viewModelScope
import com.arcgismaps.mapping.ArcGISMap
import com.arcgismaps.mapping.BasemapStyle
import com.arcgismaps.mapping.Viewpoint
import com.arcgismaps.geometry.Point
import com.arcgismaps.geometry.SpatialReference
import com.arcgismaps.mapping.view.DrawStatus
import com.esri.arcgismaps.sample.sampleslib.components.MessageDialogViewModel
import kotlinx.coroutines.flow.MutableStateFlow
import kotlinx.coroutines.flow.asStateFlow
import kotlinx.coroutines.launch

/**
 * ViewModel for the Monitor changes to draw status sample.
 *
 * Exposes an ArcGISMap and a flow indicating whether the map is currently drawing
 * so the UI can react (show a progress indicator and status text).
 */
class MonitorDrawStatusViewModel(application: Application) : AndroidViewModel(application) {

    // Create a map shown by the sample
    val arcGISMap: ArcGISMap = ArcGISMap(BasemapStyle.ArcGISTopographic).apply {
        // Center the map on San Francisco
        initialViewpoint = Viewpoint(
            center = Point(
                x = -13623300.0,
                y = 4548100.0,
                spatialReference = SpatialReference.webMercator()
            ),
            scale = 32e4
        )
    }

    // Flow exposing whether the map is currently drawing.
    // true when DrawStatus is InProgress, false otherwise.
    private val _mapIsDrawing = MutableStateFlow(false)
    val mapIsDrawing = _mapIsDrawing.asStateFlow()

    // Message dialog view model to show errors if map load fails
    val messageDialogVM = MessageDialogViewModel()

    init {
        // Load the map and surface any errors via the MessageDialogViewModel.
        viewModelScope.launch {
            arcGISMap.load().onFailure { error ->
                // Surface the error so the UI can present a dialog
                messageDialogVM.showMessageDialog(error)
            }
        }
    }

    /**
     * Update the draw status observed from the MapView composable.
     */
    fun updateDrawStatus(drawStatus: DrawStatus) {
        _mapIsDrawing.value = drawStatus == DrawStatus.InProgress
    }
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.