Learn how to create and display a scene

This tutorial shows you how to create and display a scene
Prerequisites
Before starting this tutorial:
-
You need an ArcGIS Location Platform or ArcGIS Online account.
-
Confirm that your system meets the minimum system requirements.
-
An IDE for Java.
Steps
Open a Java project with Gradle
-
To start the tutorial, complete the Display a scene tutorial, or download and unzip the Display a scene solution into a new folder.
-
Open the build.gradle file as a project in IntelliJ IDEA.
-
If you downloaded the solution, get an access token and set the API key.
An API key
An API key is a long-lived access token created using API key credentials. They are valid for up to one year and are typically embedded directly into client applications. gives your app access to secure resourcesA secure resource is any item or service in an ArcGIS that requires an ArcGIS account and authentication to access. Examples include ArcGIS Location Services, and items and data services in an ArcGIS portal. used in this tutorial.-
Go to the Create an API key tutorial to obtain a new API key access token
An access token is an authorization string that provides access to secure ArcGIS content, data, and services. Its capabilities are determined by the privileges it supports. It is obtained by implementing API key authentication, User authentication, or App authentication. using your ArcGIS Location PlatformAn ArcGIS Location Platform account, formerly known as an ArcGIS Developer account, is an identity associated with an ArcGIS Location Platform subscription. or ArcGIS OnlineAn ArcGIS Online account, also known as an ArcGIS Organization account, is an identity associated with an ArcGIS Online subscription. It can be used to access ArcGIS tools and develop applications with ArcGIS location services for an organization. account. Ensure that the following privilegePrivileges are a set of permissions assigned to ArcGIS accounts, developer credentials, and applications that grant access to secure resources and functionality in ArcGIS. is enabled: Location services > Basemaps > Basemap styles service. Copy the access token as it will be used in the next step. -
In the IntelliJ IDEA > Project tool window, open src/main/java/com.example.app and double-click App.
-
In the
start()method, set the API key property on theArcGISRuntimeEnvironmentwith your access tokenAn access token is an authorization string that provides access to secure ArcGIS content, data, and services. Its capabilities are determined by the privileges it supports. It is obtained by implementing API key authentication, User authentication, or App authentication. . Replace YOUR_ACCESS_TOKEN with your copied access token. Be sure to surround your access token with double quotes as it is a string.App.javaArcGISRuntimeEnvironment.setApiKey("YOUR_ACCESS_TOKEN");
-
Prepare files before coding the app
Modify the files from the Display a scene tutorial so that they can be used in this tutorial: you will add imports, change the application title, and remove unnecessary code.
-
In IntelliJ IDEA’s Project tool window, open src/main/java/com.example.app and double-click App.
-
Add the following imports, replacing those from the
Display a scenetutorial.App.javapackage com.example.app;import com.esri.arcgisruntime.ArcGISRuntimeEnvironment;import com.esri.arcgisruntime.mapping.ArcGISScene;import com.esri.arcgisruntime.mapping.view.SceneView;import com.esri.arcgisruntime.portal.Portal;import com.esri.arcgisruntime.portal.PortalItem;import javafx.application.Application;import javafx.scene.Scene;import javafx.scene.layout.StackPane;import javafx.stage.Stage;public class App extends Application { -
In the
start()life-cycle method, change the title that will appear on the application window toDisplay a web scene tutorial.App.java34 collapsed lines// Copyright 2021 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.example.app;import com.esri.arcgisruntime.ArcGISRuntimeEnvironment;import com.esri.arcgisruntime.mapping.ArcGISScene;import com.esri.arcgisruntime.mapping.view.SceneView;import com.esri.arcgisruntime.portal.Portal;import com.esri.arcgisruntime.portal.PortalItem;import javafx.application.Application;import javafx.scene.Scene;import javafx.scene.layout.StackPane;import javafx.stage.Stage;public class App extends Application {private SceneView sceneView;public static void main(String[] args) {Application.launch(args);}@Overridepublic void start(Stage stage) {// set the title and size of the stage and show itstage.setTitle("Display a web scene tutorial");stage.setWidth(800);stage.setHeight(700);stage.show();29 collapsed lines// create a JavaFX scene with a stack pane as the root node, and add it to the sceneStackPane stackPane = new StackPane();Scene fxScene = new Scene(stackPane);stage.setScene(fxScene);ArcGISRuntimeEnvironment.setApiKey("YOUR_ACCESS_TOKEN");// create a scene view to display the scene and add it to the stack panesceneView = new SceneView();stackPane.getChildren().add(sceneView);// set the scene on the scene viewsceneView.setArcGISScene(scene);}/*** Stops and releases all resources used in application.*/@Overridepublic void stop() {if (sceneView != null) {sceneView.dispose();}}} -
In
start()method, delete the code for base surface, surface elevation, camera, and camera viewpoint. The web scene defines these characteristics, so you don’t have to set them in your app.App.java55 collapsed lines// Copyright 2021 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.example.app;import com.esri.arcgisruntime.ArcGISRuntimeEnvironment;import com.esri.arcgisruntime.geometry.Point;import com.esri.arcgisruntime.geometry.SpatialReferences;import com.esri.arcgisruntime.mapping.ArcGISScene;import com.esri.arcgisruntime.mapping.ArcGISTiledElevationSource;import com.esri.arcgisruntime.mapping.BasemapStyle;import com.esri.arcgisruntime.mapping.Surface;import com.esri.arcgisruntime.mapping.view.Camera;import com.esri.arcgisruntime.mapping.view.SceneView;import javafx.application.Application;import javafx.scene.Scene;import javafx.scene.layout.StackPane;import javafx.stage.Stage;public class App extends Application {private SceneView sceneView;public static void main(String[] args) {Application.launch(args);}@Overridepublic void start(Stage stage) {// set the title and size of the stage and show itstage.setTitle("Display a scene tutorial");stage.setWidth(800);stage.setHeight(700);stage.show();// create a JavaFX scene with a stack pane as the root node, and add it to the sceneStackPane stackPane = new StackPane();Scene fxScene = new Scene(stackPane);stage.setScene(fxScene);ArcGISRuntimeEnvironment.setApiKey("YOUR_ACCESS_TOKEN");// create a scene view to display the scene and add it to the stack panesceneView = new SceneView();stackPane.getChildren().add(sceneView);ArcGISScene scene = new ArcGISScene(BasemapStyle.ARCGIS_IMAGERY_STANDARD);// set the scene on the scene viewsceneView.setArcGISScene(scene);// add base surface for elevation dataSurface surface = new Surface();String elevationServiceUrl = "https://elevation3d.arcgis.com/arcgis/rest/services/WorldElevation3D/Terrain3D/ImageServer";surface.getElevationSources().add(new ArcGISTiledElevationSource(elevationServiceUrl));// add an exaggeration factor to increase the 3D effect of the elevation.surface.setElevationExaggeration(2.5f);scene.setBaseSurface(surface);Point cameraLocation = new Point(-118.794, 33.909, 5330.0, SpatialReferences.getWgs84());Camera camera = new Camera(cameraLocation, 355.0, 72.0, 0.0);sceneView.setViewpointCamera(camera);14 collapsed lines}/*** Stops and releases all resources used in application.*/@Overridepublic void stop() {if (sceneView != null) {sceneView.dispose();}}} -
In
start()method, delete the code that creates anArcGISSceneby passing a basemap. In this tutorial, you will instead pass a portal item.App.java55 collapsed lines// Copyright 2021 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.example.app;import com.esri.arcgisruntime.ArcGISRuntimeEnvironment;import com.esri.arcgisruntime.geometry.Point;import com.esri.arcgisruntime.geometry.SpatialReferences;import com.esri.arcgisruntime.mapping.ArcGISScene;import com.esri.arcgisruntime.mapping.ArcGISTiledElevationSource;import com.esri.arcgisruntime.mapping.BasemapStyle;import com.esri.arcgisruntime.mapping.Surface;import com.esri.arcgisruntime.mapping.view.Camera;import com.esri.arcgisruntime.mapping.view.SceneView;import javafx.application.Application;import javafx.scene.Scene;import javafx.scene.layout.StackPane;import javafx.stage.Stage;public class App extends Application {private SceneView sceneView;public static void main(String[] args) {Application.launch(args);}@Overridepublic void start(Stage stage) {// set the title and size of the stage and show itstage.setTitle("Display a scene tutorial");stage.setWidth(800);stage.setHeight(700);stage.show();// create a JavaFX scene with a stack pane as the root node, and add it to the sceneStackPane stackPane = new StackPane();Scene fxScene = new Scene(stackPane);stage.setScene(fxScene);ArcGISRuntimeEnvironment.setApiKey("YOUR_ACCESS_TOKEN");// create a scene view to display the scene and add it to the stack panesceneView = new SceneView();stackPane.getChildren().add(sceneView);ArcGISScene scene = new ArcGISScene(BasemapStyle.ARCGIS_IMAGERY_STANDARD);// set the scene on the scene viewsceneView.setArcGISScene(scene);13 collapsed lines}/*** Stops and releases all resources used in application.*/@Overridepublic void stop() {if (sceneView != null) {sceneView.dispose();}}}
Get the web scene item ID
You can use ArcGIS tools
- Go to the LA Trails and Parks web scene in the Scene Viewer in ArcGIS Online
ArcGIS Online is a GIS mapping, analytics, data hosting, and content management software as a service (SaaS) product. It includes applications, tools, APIs, and location services for users and developers. It is subscription-based and requires an ArcGIS Online account. . This web scene displays trails, trailheads and parks in the Santa Monica Mountains. - Make a note of the item ID at the end of the browser’s URL. The item ID should be 579f97b2f3b94d4a8e48a5f140a6639b.
Display the web scene
You can display a web scene
-
In the
start()method, create a newPortal(java.lang.String,boolean)referencing ArcGIS OnlineArcGIS Online is a GIS mapping, analytics, data hosting, and content management software as a service (SaaS) product. It includes applications, tools, APIs, and location services for users and developers. It is subscription-based and requires an ArcGIS Online account. as theportalUrlparameter andfalsefor theloginRequiredparameter.App.java52 collapsed lines// Copyright 2021 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.example.app;import com.esri.arcgisruntime.ArcGISRuntimeEnvironment;import com.esri.arcgisruntime.mapping.ArcGISScene;import com.esri.arcgisruntime.mapping.view.SceneView;import com.esri.arcgisruntime.portal.Portal;import com.esri.arcgisruntime.portal.PortalItem;import javafx.application.Application;import javafx.scene.Scene;import javafx.scene.layout.StackPane;import javafx.stage.Stage;public class App extends Application {private SceneView sceneView;public static void main(String[] args) {Application.launch(args);}@Overridepublic void start(Stage stage) {// set the title and size of the stage and show itstage.setTitle("Display a web scene tutorial");stage.setWidth(800);stage.setHeight(700);stage.show();// create a JavaFX scene with a stack pane as the root node, and add it to the sceneStackPane stackPane = new StackPane();Scene fxScene = new Scene(stackPane);stage.setScene(fxScene);ArcGISRuntimeEnvironment.setApiKey("YOUR_ACCESS_TOKEN");// create a scene view to display the scene and add it to the stack panesceneView = new SceneView();stackPane.getChildren().add(sceneView);// create a scene from a web scene portal item and set it to the scene viewPortal portal = new Portal("http://www.arcgis.com/", false);// set the scene on the scene viewsceneView.setArcGISScene(scene);14 collapsed lines}/*** Stops and releases all resources used in application.*/@Overridepublic void stop() {if (sceneView != null) {sceneView.dispose();}}} -
Create a
PortalItemfor the web sceneA web scene is a scene stored as a JSON object that defines properties such as the basemap layer, data layers, layer styles, and pop-up styles. Its JSON structure is defined by the web scene specification. by passing theportaland the web scene’s item IDAn item ID is a unique identifier representing a single item stored, managed, and accessed in a portal, such as a web map, hosted layer, or file. as parameters. -
Create an
ArcGISScene(com.esri.arcgisruntime.portal.PortalItem)using theportalItemas the constructor parameter.App.java52 collapsed lines// Copyright 2021 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.example.app;import com.esri.arcgisruntime.ArcGISRuntimeEnvironment;import com.esri.arcgisruntime.mapping.ArcGISScene;import com.esri.arcgisruntime.mapping.view.SceneView;import com.esri.arcgisruntime.portal.Portal;import com.esri.arcgisruntime.portal.PortalItem;import javafx.application.Application;import javafx.scene.Scene;import javafx.scene.layout.StackPane;import javafx.stage.Stage;public class App extends Application {private SceneView sceneView;public static void main(String[] args) {Application.launch(args);}@Overridepublic void start(Stage stage) {// set the title and size of the stage and show itstage.setTitle("Display a web scene tutorial");stage.setWidth(800);stage.setHeight(700);stage.show();// create a JavaFX scene with a stack pane as the root node, and add it to the sceneStackPane stackPane = new StackPane();Scene fxScene = new Scene(stackPane);stage.setScene(fxScene);ArcGISRuntimeEnvironment.setApiKey("YOUR_ACCESS_TOKEN");// create a scene view to display the scene and add it to the stack panesceneView = new SceneView();stackPane.getChildren().add(sceneView);// create a scene from a web scene portal item and set it to the scene viewPortal portal = new Portal("http://www.arcgis.com/", false);PortalItem portalItem = new PortalItem(portal, "579f97b2f3b94d4a8e48a5f140a6639b");ArcGISScene scene = new ArcGISScene(portalItem);// set the scene on the scene viewsceneView.setArcGISScene(scene);14 collapsed lines}/*** Stops and releases all resources used in application.*/@Overridepublic void stop() {if (sceneView != null) {sceneView.dispose();}}} -
Use the existing code to display the new
ArcGISScene(com.esri.arcgisruntime.portal.PortalItem)on thesceneViewwithsetArcGISScene().App.java52 collapsed lines// Copyright 2021 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.example.app;import com.esri.arcgisruntime.ArcGISRuntimeEnvironment;import com.esri.arcgisruntime.mapping.ArcGISScene;import com.esri.arcgisruntime.mapping.view.SceneView;import com.esri.arcgisruntime.portal.Portal;import com.esri.arcgisruntime.portal.PortalItem;import javafx.application.Application;import javafx.scene.Scene;import javafx.scene.layout.StackPane;import javafx.stage.Stage;public class App extends Application {private SceneView sceneView;public static void main(String[] args) {Application.launch(args);}@Overridepublic void start(Stage stage) {// set the title and size of the stage and show itstage.setTitle("Display a web scene tutorial");stage.setWidth(800);stage.setHeight(700);stage.show();// create a JavaFX scene with a stack pane as the root node, and add it to the sceneStackPane stackPane = new StackPane();Scene fxScene = new Scene(stackPane);stage.setScene(fxScene);ArcGISRuntimeEnvironment.setApiKey("YOUR_ACCESS_TOKEN");// create a scene view to display the scene and add it to the stack panesceneView = new SceneView();stackPane.getChildren().add(sceneView);// create a scene from a web scene portal item and set it to the scene viewPortal portal = new Portal("http://www.arcgis.com/", false);PortalItem portalItem = new PortalItem(portal, "579f97b2f3b94d4a8e48a5f140a6639b");ArcGISScene scene = new ArcGISScene(portalItem);// set the scene on the scene viewsceneView.setArcGISScene(scene);14 collapsed lines}/*** Stops and releases all resources used in application.*/@Overridepublic void stop() {if (sceneView != null) {sceneView.dispose();}}} -
Run the app. Ensure to run the app as a Gradle task and not as an application in your IDE. In the Gradle tool window, under Tasks > application, double-click run.
Your app should display the scene that you viewed earlier in the Scene Viewer.
What’s Next?
Learn how to use additional API features, ArcGIS location services, and ArcGIS tools in these tutorials: