View on GitHub Sample viewer app

Show various kinds of 3D symbols in a scene.

Image of style point with scene symbol

Use case

You can programmatically create different types of 3D symbols and add them to a scene at specified locations. You could do this to call attention to the prominence of a location.

How to use the sample

When the scene loads, note the different types of 3D symbols that you can create.

How it works

  1. Create a graphics overlay.
  2. Create various simple marker scene symbols by specifying different styles and colors, and a height, width, depth, and anchor position of each.
  3. Create a graphic for each symbol.
  4. Add the graphics to the graphics overlay.
  5. Add the graphics overlay to the scene view.

Relevant API

  • SceneSymbolAnchorPosition
  • SimpleMarkerSceneSymbol
  • SimpleMarkerSceneSymbolStyle

About the data

This sample shows arbitrary symbols in an empty scene with imagery basemap.

Tags

3D, cone, cube, cylinder, diamond, geometry, graphic, graphics overlay, pyramid, scene, shape, sphere, symbol, tetrahedron, tube, visualization

Sample Code

MainActivity.kt MainActivity.kt StylePointWithSceneSymbolViewModel.kt StylePointWithSceneSymbolScreen.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.stylepointwithscenesymbol
import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
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.stylepointwithscenesymbol.screens.StylePointWithSceneSymbolScreen
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)
setContent {
SampleAppTheme {
StylePointWithSceneSymbolApp()
}
}
}
@Composable
private fun StylePointWithSceneSymbolApp() {
Surface(color = MaterialTheme.colorScheme.background) {
StylePointWithSceneSymbolScreen(
sampleName = getString(R.string.style_point_with_scene_symbol_app_name)
)
}
}
}