Label | Explanation | Data Type |
Input 3D Tiles
| The input 3D tiles layer or folder. | 3D Tiles Layer; Folder; Layer File |
Output File
| The output 3D tiles archive file. | File |
Summary
Packages a 3D tiles layer or folder of 3D tiles content into a 3D tiles archive file.
Usage
The folder containing the 3D tiles content must only contain 3D tiles content.
The output package adheres to the 3tz specification.
Packages can be uploaded and published as a 3D tiles layer to ArcGIS Online.
Parameters
arcpy.management.Package3DTiles(in_3dtiles, out_file)
Name | Explanation | Data Type |
in_3dtiles | The input 3D tiles layer or folder. | 3D Tiles Layer; Folder; Layer File |
out_file | The output 3D tiles archive file. | File |
Code sample
The following script demonstrates how to package a folder of 3D tiles content.
import arcpy
arcpy.management.Package3DTiles(r"C:temp\mesh_data", r"C:\temp\mesh.3tz")
Environments
This tool does not use any geoprocessing environments.