layout: default title: RasterDataSource parent: Core Classes —
dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components.Layers
RasterDataSource Class
A file-based raster that resides in a registered raster workspace. The raster may only be displayed in the view, not queried or assigned a renderer.
ArcGIS Maps SDK for JavaScript
public class RasterDataSource : dymaptic.GeoBlazor.Core.Components.Layers.DynamicDataSource
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 DynamicDataSource 🡒 RasterDataSource
Constructors
RasterDataSource() Constructor
Parameterless constructor for use as a Razor component.
public RasterDataSource();
RasterDataSource(string, string) Constructor
Creates a new RasterDataSource in code with parameters.
public RasterDataSource(string workspaceId, string dataSourceName);
Parameters
workspaceId
System.String
The workspace where the table resides as defined in the ArcGIS Server Manager.
dataSourceName
System.String
The name of the raster in the registered workspace.
Properties
RasterDataSource.DataSourceName Property
The name of the raster in the registered workspace.
public string? DataSourceName { get; set; }
Property Value
RasterDataSource.Type Property
The name of the data source type.
public override string Type { get; }
Property Value
RasterDataSource.WorkspaceId Property
The workspace where the table resides as defined in the ArcGIS Server Manager.
public string? WorkspaceId { get; set; }