Skip to main content
API Reference SwiftyNsdk

NsdkMeshDownloader

A session-scoped utility for downloading mesh geometry associated with VPS locations.

Declaration

final class NsdkMeshDownloader

Methods

NameTypeSummary
requestLocationMeshMeshDownloaderResults
Requests all meshes for a VPS location identified by an anchor payload.
Initiates a network request to download all meshes associated with the given VPS location.
The call suspends until the operation completes successfully, fails, or times out.
The method automatically polls for completion and returns a MeshDownloaderResults object
containing the downloaded geometry data.
- Parameters:
- payload: The VPS anchor payload string identifying the target location. This can be
obtained from the blob field in Geospatial Browser, or the default_anchor field of
the VPS Coverage API’s LocalizationTarget.
- getTexture: If true, the response includes mesh texture data; if false, the image and
UV buffers are empty. Instead, a color field (rgb) will be provided for each vertex.
- maxDownloadSize: The optional maximum size (in kilobytes) for meshes to be downloaded.
Meshes larger than this limit are skipped. A value of nil means no size limit.
- timeout: The maximum duration to wait for completion (default: 300 seconds).
- pollingInterval: The interval between status checks (default: 0.5 seconds).
- Returns: A MeshDownloaderResults object containing the downloaded mesh data.
- Throws:
- CancellationError if the Task running this function was cancelled.
- TimeoutError if the function timed out before it could complete execution.
- NsdkError if there was an error with one or more of the arguments. Check NSDK's C
logs for more information.

ON THIS PAGE