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

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.
- Create a
MobileScenePackageusing the path to the local .mspk file. - Call
MobileScenePackage.load()and check for any errors. - When the
MobileScenePackageis loaded, obtain the firstScenefrom theMobileScenePackage.scenes()property. - Create a
SceneViewand callSceneView.sceneto 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
/* 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
import android.content.Intentimport android.os.Bundleimport com.esri.arcgismaps.sample.sampleslib.DownloaderActivity
class DownloadActivity : DownloaderActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) downloadAndStartSample( Intent(this, MainActivity::class.java), // get the app name of the sample getString(R.string.display_scene_from_mobile_scene_package_app_name), listOf( // ArcGIS Portal item containing the .mspk mobile scene package "https://www.arcgis.com/home/item.html?id=7dd2f97bb007466ea939160d0de96a9d" ) ) }}/* 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
import android.os.Bundleimport androidx.activity.ComponentActivityimport androidx.activity.compose.setContentimport androidx.activity.enableEdgeToEdgeimport androidx.compose.material3.MaterialThemeimport androidx.compose.material3.Surfaceimport androidx.compose.runtime.Composableimport com.arcgismaps.ApiKeyimport com.arcgismaps.ArcGISEnvironmentimport com.esri.arcgismaps.sample.displayscenefrommobilescenepackage.screens.MainScreenimport com.esri.arcgismaps.sample.sampleslib.theme.SampleAppTheme
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 { DisplaySceneFromMobileScenePackageApp() } } }
@Composable private fun DisplaySceneFromMobileScenePackageApp() { Surface(color = MaterialTheme.colorScheme.background) { MainScreen(sampleName = getString(R.string.display_scene_from_mobile_scene_package_app_name)) } }}/* 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.Applicationimport androidx.compose.runtime.getValueimport androidx.compose.runtime.mutableStateOfimport androidx.compose.runtime.setValueimport androidx.lifecycle.AndroidViewModelimport com.arcgismaps.mapping.ArcGISSceneimport com.arcgismaps.mapping.BasemapStyleimport com.arcgismaps.mapping.MobileScenePackageimport com.esri.arcgismaps.sample.displayscenefrommobilescenepackage.Rimport com.esri.arcgismaps.sample.sampleslib.components.MessageDialogViewModelimport kotlinx.coroutines.CoroutineScopeimport kotlinx.coroutines.launchimport 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()) } } }}/* 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.screens
import android.app.Applicationimport androidx.compose.foundation.layout.Columnimport androidx.compose.foundation.layout.fillMaxSizeimport androidx.compose.foundation.layout.paddingimport androidx.compose.material3.Scaffoldimport androidx.compose.runtime.Composableimport androidx.compose.runtime.rememberimport androidx.compose.runtime.rememberCoroutineScopeimport androidx.compose.ui.Modifierimport androidx.compose.ui.platform.LocalContextimport com.arcgismaps.toolkit.geoviewcompose.SceneViewimport com.esri.arcgismaps.sample.displayscenefrommobilescenepackage.components.SceneViewModelimport com.esri.arcgismaps.sample.sampleslib.components.MessageDialogimport com.esri.arcgismaps.sample.sampleslib.components.SampleTopAppBar
/** * Main screen layout for the sample app */@Composablefun MainScreen(sampleName: String) { // create a ViewModel to handle SceneView interactions val sampleCoroutineScope = rememberCoroutineScope() // get the application context val application = LocalContext.current.applicationContext as Application val sceneViewModel = remember { SceneViewModel(application, sampleCoroutineScope) }
Scaffold( topBar = { SampleTopAppBar(title = sampleName) }, content = { Column( modifier = Modifier .fillMaxSize() .padding(it) ) { // composable function that wraps the SceneView SceneView( modifier = Modifier.fillMaxSize(), arcGISScene = sceneViewModel.scene ) // display a dialog if the sample encounters an error sceneViewModel.messageDialogVM.apply { if (dialogStatus) { MessageDialog( title = messageTitle, description = messageDescription, onDismissRequest = ::dismissDialog ) } } } } )}