Display scene from mobile scene package

View on GitHubSample viewer app

Display a scene from a mobile scene package (.mspk)

Image of display scene from mobile scene package

Use case

An .mspk file is an archive containing the data (specifically, basemaps and features), used to display an offline 3D scene.

How to use the sample

When the sample opens, it will automatically display the Scene in the mobile scene package. Since this sample works with a local .mspk, you may initially need to download the file to your device. Pan and zoom to observe the scene from the mobile scene package.

How it works

This sample takes a mobile scene package that was created in ArcGIS Pro, and displays a Scene from within the package in a SceneView.

  1. Create a MobileScenePackage using the path to the local .mspk file.
  2. Call MobileScenePackage.load() and check for any errors.
  3. When the MobileScenePackage is loaded, obtain the first Scene from the MobileScenePackage.scenes() property.
  4. Create a SceneView and call SceneView.scene to display the scene from the package.

Relevant API

  • ArcGISScene
  • MobileScenePackage
  • SceneView

Additional information

This sample uses the GeoView-Compose Toolkit module to be able to implement a composable SceneView.

Tags

3d, geoview-compose, mobile scene package, mspk, offline, scene

Sample Code

SceneViewModel.ktSceneViewModel.ktDownloadActivity.ktMainActivity.ktMainScreen.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
/* Copyright 2023 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.displayscenefrommobilescenepackage.components

import android.app.Application
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.setValue
import androidx.lifecycle.AndroidViewModel
import com.arcgismaps.mapping.ArcGISScene
import com.arcgismaps.mapping.BasemapStyle
import com.arcgismaps.mapping.MobileScenePackage
import com.esri.arcgismaps.sample.displayscenefrommobilescenepackage.R
import com.esri.arcgismaps.sample.sampleslib.components.MessageDialogViewModel
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.launch
import java.io.File

class SceneViewModel(
    private val application: Application,
    private val sampleCoroutineScope: CoroutineScope
) : AndroidViewModel(application) {

    // create a base scene to be used to load the mobile scene package
    var scene by mutableStateOf(ArcGISScene(BasemapStyle.ArcGISStreets))

    // create a ViewModel to handle dialog interactions
    val messageDialogVM: MessageDialogViewModel = MessageDialogViewModel()

    private val provisionPath: String by lazy {
        application.getExternalFilesDir(null)?.path.toString() + File.separator + application.getString(
            R.string.display_scene_from_mobile_scene_package_app_name
        )
    }

    init {
        createMobileScenePackage()
    }

    private fun createMobileScenePackage() {
        // get the file path of the (.mspk) file
        val filePath = provisionPath + application.getString(R.string.philadelphia_mspk)

        // create the mobile scene package
        val mobileScenePackage = MobileScenePackage(filePath)

        sampleCoroutineScope.launch {
            // load the mobile scene package
            mobileScenePackage.load().onSuccess {
                // update the mutable state holder with the first scene from the MobileScenePackage
                scene = mobileScenePackage.scenes.first()
            }.onFailure { error ->
                // show the message dialog and pass the error message to be displayed in the dialog
                messageDialogVM.showMessageDialog(error.message.toString(), error.cause.toString())
            }
        }
    }
}

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