Learn about recent changes to the ArcGIS Urban API. The release date is March 25th, 2026.
What's new
- Added support for zoning and overlay parameters in metrics by adding
ExtendedtoMetric Parameters ZoneandTypes Overlays. - Added
DisplaytoOrder Analysisto allow custom ordering of analyses.Attributes - Added
ThumbnailtoAnalysis, enabling storage and retrieval of analysis thumbnails.Attributes - Added
Uploadscalar to support file uploads such as thumbnails in GraphQL mutations. - Added
schematicandVisualization realistictoVisualization Urbanfor new basemap visualization options.Model Config
Examples
The following section provides a few examples of how to use the new Urban API features added in the March 2026 release.
Uploading a thumbnail during analysis creation
This example shows how to upload a thumbnail to an analysis.
mutation CreateViewshedAnalysis($urbanDatabaseId: PortalItemId!, $thumbnail: Upload) {
createViewshedAnalyses(
urbanDatabaseId: $urbanDatabaseId
viewshedAnalyses: [...]
) {
attributes {
CustomID
GlobalID
Thumbnail
}
}
}Querying new visualization configuration fields
This example shows how to query the schematic and the realistic from the Urban.
query UrbanModelConfig {
urbanModel(urbanModelId: "") {
config {
schematicVisualization
realisticVisualization
}
}
}The response should look something like this:
"config": {
"schematicVisualization": "Default",
"realisticVisualization": "Custom"
}Querying display order for analyses
This example shows how to query the Display from an analysis.
query Analyses {
urbanDesignDatabase(urbanDesignDatabaseId: "") {
plans {
analyses {
attributes {
DisplayOrder
}
}
}
}
}Schema changes
This section describes new features and changes made to the Urban API schema.
- An
Uploadscalar was added to support file uploads that follows the GraphQL multipart request spec. This standard is typically supported by GraphQL client libraries (e.g., apollo-upload-client). - Field
Thumbnailwas added toAnalysis.Attributes - Field
Displaywas added toOrder Analysis.Attributes - Fields
schematicandVisualization realisticwas added toVisualization Urban.Model Config - Field
Extendedwas added onMetric Parameters Zoneand onTypes Overlays.
Bug fixes and improvements
- Bug fixes for concurrent queries accessing urban models hosted on different systems.
Deprecations
No new deprecations in this release.
Breaking changes
- Field
Publicwas removed.Feedback Enabled - Field
Publicwas removed.Feedback End Date