Hosted data services provide a way to store, manage, and access your own geographic data for maps. You can access data services to display features, map tiles, or 3D objects such as buildings. Supported data types include feature data, scene data, and map tile data.
Feature data
A feature service allows you to store, access, and manage collections of features. Each collection is known as feature layer. You can access features in a feature layer with a SQL and/or spatial query. Features can be returned in JSON, GeoJSON, PBF, and other formats. To create a feature service, you import data with the ArcGIS portal. You also use the portal to set the service capabilities, support for editing, access and security, and cache settings.
Steps
- Use ArcGIS portal to import your data and create a feature service and feature layer.
- Add the feature layer to a scene with CesiumJS. Use the service URL.
- Optionally, use a SQL and/or spatial query to select a subset of features.
Style a feature layer
This example shows how to query and style a feature layer then add it to the scene as a Cesium..
Tutorials

Add features as GeoJSON
Add features from a feature service to a scene.

Style features
Use data-driven styling to apply symbol colors and styles to features.

Display a pop-up (Feature)
Display feature attributes in a popup.

Query features (SQL)
Execute a SQL query to access polygon features from a feature service.

Query features (spatial)
Execute a spatial query to access polygon features from a feature service.
Scene data
A scene service contains scene data stored in the Indexed 3D Scene Layer (I3S) format, an OGC standard. CesiumJS supports loading two types of scene layers hosted in ArcGIS: 3D object layers and integrated mesh layers.
Steps
- Use ArcGIS portal to import your scene layer package and create a scene service.
- Add the scene layer to a scene with CesiumJS. Use the service URL.
- Optionally, if your layer has gravity-related heights, add a terrain provider.
Add 3D objects
This example shows how to add a 3D object layer containing textured building models of San Francisco.
Add an integrated mesh
This example shows how to add an integrated mesh containing textured building models of Frankfurt.
Tutorials
Map tile data
A map tile service provides access to pre-rendered image tiles (raster tiles) that represent a snapshot of feature data. Map tile services are created from feature services by using ArcGIS portal. You can also use the portal to control the service security, tile scales, and caching settings.
Steps
- Use ArcGIS portal to import your data and create a feature service (and feature layer).
- Style the feature layer.
- Publish a map tile layer from the feature layer.
- Add the map tile layer to a scene with CesiumJS. Use the service URL.
Add map tiles
This example shows how to add a map tile layer to a CesiumJS application using ArcGIS.


