Skip to content
View on GitHubSample viewer app

Display KML from a URL, portal item, or local KML file.

Screenshot of Add KML layer sample

Use case

Keyhole Markup Language (KML) is a data format used by Google Earth. KML is popular as a transmission format for consumer use and for sharing geographic data between apps. You can use the Maps SDKs to display KML files, with full support for a variety of features, including network links, 3D models, screen overlays, and tours.

How to use the sample

Use the drop-down menu to select a source. A KML file from that source will be loaded and displayed in the map.

How it works

  1. To create a KML layer from a URL, create a KmlDataset using the URL to the KML file. Then pass the dataset to the KmlLayer constructor.
  2. To create a KML layer from a portal item, construct a PortalItem with a Portal and the KML portal item ID. Pass the portal item to the KmlLayer constructor.
  3. To create a KML layer from a local file, create a KmlDataset using the absolute file path to the local KML file. Then pass the dataset to the KmlLayer constructor.
  4. Add the layer as an operational layer to the map with arcGISMap.operationalLayers.add(kmlLayer).

Relevant API

  • KmlDataset
  • KmlLayer

Offline data

This sample downloads the US State Capitals, as placemark points in the .kml format from ArcGIS Online.

About the data

This sample displays three different KML files:

  • From URL - This is a map of the convective outlook produced by NOAA/NWS Storm Prediction Center. It uses KML network links to always show the latest data.
  • From local file - this is a map of U.S. state capitals. It doesn't define an icon, so the default pushpin is used for the points.
  • From portal item - this is a map of U.S. states.

Tags

keyhole, KML, KMZ, OGC

Sample Code

AddKMLLayerViewModel.ktAddKMLLayerViewModel.ktMainActivity.ktDownloadActivity.ktAddKMLLayerScreen.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/* 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.addkmllayer.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.mapping.kml.KmlDataset
import com.arcgismaps.mapping.PortalItem
import com.arcgismaps.mapping.layers.KmlLayer
import com.arcgismaps.portal.Portal
import com.arcgismaps.toolkit.geoviewcompose.MapViewProxy
import com.esri.arcgismaps.sample.addkmllayer.R
import com.esri.arcgismaps.sample.sampleslib.components.MessageDialogViewModel
import kotlinx.coroutines.launch
import kotlinx.coroutines.flow.MutableStateFlow
import kotlinx.coroutines.flow.asStateFlow
import java.io.File

/**
 * ViewModel for the Add KML Layer sample.
 */
class AddKmlLayerViewModel(private val app: Application) : AndroidViewModel(app) {

    // Lazy provision path for local sample resource.
    private val provisionPath: String by lazy {
        app.getExternalFilesDir(null)?.path.toString() + File.separator + app.getString(R.string.add_kml_layer_app_name)
    }

    // The ArcGIS map used by the composable MapView.
    val arcGISMap: ArcGISMap = ArcGISMap(BasemapStyle.ArcGISNavigationNight).apply {
        initialViewpoint = Viewpoint(39.8, -98.6, 10e7)
    }

    // Build the list of KML options.
    val kmlOptions: List<KmlOption> = listOf(
        KmlOption.LocalFile(File(provisionPath, "US_State_Capitals.kml")),
        KmlOption.FromUrl(url = "https://www.spc.noaa.gov/products/outlook/SPC_outlooks.kml"),
        KmlOption.PortalItemOption(
            PortalItem(
                portal = Portal(url = "https://www.arcgis.com"),
                itemId = "9fe0b1bfdcd64c83bd77ea0452c76253"
            )
        )
    )

    // Selected label shown in the drop-down TextField.
    private val _selectedKmlOption = MutableStateFlow(kmlOptions[0])
    val selectedKmlOption = _selectedKmlOption.asStateFlow()

    // Map proxy to allow the ViewModel to set viewpoint.
    val mapViewProxy: MapViewProxy = MapViewProxy()

    // Loading state to show/hide the loading dialog.
    private val _isLoading = MutableStateFlow(false)
    val isLoading = _isLoading.asStateFlow()

    // Message dialog ViewModel.
    val messageDialogVM = MessageDialogViewModel()

    init {
        // Validate local file then load the map.
        val localKmlFile = File(provisionPath, "US_State_Capitals.kml")
        if (!localKmlFile.exists()) {
            messageDialogVM.showMessageDialog(
                title = "Local KML not found",
                description = "Expected file at: ${localKmlFile.canonicalPath}"
            )
        }

        // Load the default KML layer.
        setKmlLayer(0)
    }

    /**
     * Sets the active KML layer on the map based on the provided index from the KML options list.
     */
    fun setKmlLayer(index: Int) {
        _selectedKmlOption.value = kmlOptions[index]

        viewModelScope.launch {
            _isLoading.value = true
            val kmlLayer = _selectedKmlOption.value.createLayer()
            // Replace the map's operational layers with the KML layer.
            arcGISMap.operationalLayers.apply {
                clear()
                add(kmlLayer)
            }
            // Attempt to load the KML layer.
            kmlLayer.load().onSuccess {
                arcGISMap.load().onFailure { messageDialogVM.showMessageDialog(it) }
                // If the layer has a full extent after loading, use MapViewProxy to set the viewpoint.
                kmlLayer.fullExtent?.let { extent ->
                    mapViewProxy.setViewpointGeometry(boundingGeometry = extent, paddingInDips = 25.0)
                }
            }.onFailure { error ->
                messageDialogVM.showMessageDialog(
                    title = "Failed to load KML layer",
                    description = error.message.toString()
                )
            }
            _isLoading.value = false
        }
    }
}

/**
 * Encapsulates the three KML sources used by this sample.
 */
sealed class KmlOption(val label: String) {
    class FromUrl(val url: String) : KmlOption("From URL") {
        override fun createLayer(): KmlLayer = KmlLayer(KmlDataset(url))
    }

    class LocalFile(val file: File) : KmlOption("Local File") {
        override fun createLayer(): KmlLayer = KmlLayer(KmlDataset(file.canonicalPath))
    }

    class PortalItemOption(val portalItem: PortalItem) : KmlOption("Portal Item") {
        override fun createLayer(): KmlLayer = KmlLayer(item = portalItem)
    }

    abstract fun createLayer(): KmlLayer
}

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