CesiumResourceBehavior Enumeration |
Specifies whether to embed a resource into a CZML stream or simply link to them.
Namespace:
AGI.Foundation.Cesium
Assembly:
AGI.Foundation.Cesium (in AGI.Foundation.Cesium.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public enum CesiumResourceBehavior
Public Enumeration CesiumResourceBehavior
public enum class CesiumResourceBehavior
type CesiumResourceBehavior
Members
| Member name | Description |
---|
| Embed |
Download and embed the resource inline in the document as a data URI. This is the most compatible
option, but produces larger documents.
|
| LinkTo |
Link to the resource directly in the document. Browser-based CZML clients may need to make
cross-origin requests using Cross-Origin Resource Sharing
to access the resource, which may need server configuration changes, see
https://enable-cors.org.
|
See Also