layout: default title: SublayerOperations parent: Core Classes —
dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components.Layers
SublayerOperations Class
Describes operations that can be performed on features in the layer.
public class SublayerOperations :
System.IEquatable<dymaptic.GeoBlazor.Core.Components.Layers.SublayerOperations>
Inheritance System.Object 🡒 SublayerOperations
Implements System.IEquatable<SublayerOperations>
Constructors
SublayerOperations(bool, bool) Constructor
Describes operations that can be performed on features in the layer.
public SublayerOperations(bool SupportsQuery, bool SupportsQueryAttachments);
Parameters
SupportsQuery
System.Boolean
Indicates if features in the layer can be queried.
SupportsQueryAttachments
System.Boolean
Indicates if the layer supports REST API queryAttachments operation. If false, queryAttachments() method can only return attachments for one feature at a time. If true, queryAttachments() can return attachments for array of objectIds.
Properties
SublayerOperations.SupportsQuery Property
Indicates if features in the layer can be queried.
public bool SupportsQuery { get; set; }
Property Value
SublayerOperations.SupportsQueryAttachments Property
Indicates if the layer supports REST API queryAttachments operation. If false, queryAttachments() method can only return attachments for one feature at a time. If true, queryAttachments() can return attachments for array of objectIds.
public bool SupportsQueryAttachments { get; set; }