dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Interfaces

IScaleRangeLayer Interface

Interface for types BaseTileLayer, BingMapsLayer, CatalogDynamicGroupLayer, CatalogFootprintLayer, CatalogLayer, CSVLayer, FeatureLayer, GeoJSONLayer, GeoRSSLayer, GraphicsLayer, ImageryLayer, ImageryTileLayer, KMLLayer, MapImageLayer, OpenStreetMapLayer, SceneLayer, TileLayer, VectorTileLayer, WCSLayer, WebTileLayer, WFSLayer, WMSLayer, WMTSLayer

public interface IScaleRangeLayer :
dymaptic.GeoBlazor.Core.Interfaces.IMapComponent

Derived
BaseTileLayer
CSVLayer
FeatureLayer
GeoJSONLayer
GeoRSSLayer
GraphicsLayer
ImageryLayer
ImageryTileLayer
KMLLayer
MapImageLayer
TileLayer
VectorTileLayer
WCSLayer
WebTileLayer
WFSLayer
WMSLayer
WMTSLayer

Implements IMapComponent

Properties

IScaleRangeLayer.MaxScale Property

The maximum scale (most zoomed in) at which the layer is visible in the view.
default 0
ArcGIS Maps SDK for JavaScript

System.Nullable<double> MaxScale { get; set; }

Property Value

System.Nullable<System.Double>

IScaleRangeLayer.MinScale Property

The minimum scale (most zoomed out) at which the layer is visible in the view.
default 0
ArcGIS Maps SDK for JavaScript

System.Nullable<double> MinScale { get; set; }

Property Value

System.Nullable<System.Double>

Methods

IScaleRangeLayer.GetMaxScale() Method

Asynchronously retrieve the current value of the MaxScale property.

System.Threading.Tasks.Task<System.Nullable<double>> GetMaxScale();

Returns

System.Threading.Tasks.Task<System.Nullable<System.Double>>

IScaleRangeLayer.GetMinScale() Method

Asynchronously retrieve the current value of the MinScale property.

System.Threading.Tasks.Task<System.Nullable<double>> GetMinScale();

Returns

System.Threading.Tasks.Task<System.Nullable<System.Double>>

IScaleRangeLayer.SetMaxScale(Nullable) Method

Asynchronously set the value of the MaxScale property after render.

System.Threading.Tasks.Task SetMaxScale(System.Nullable<double> value);

Parameters

value System.Nullable<System.Double>

Returns

System.Threading.Tasks.Task

IScaleRangeLayer.SetMinScale(Nullable) Method

Asynchronously set the value of the MinScale property after render.

System.Threading.Tasks.Task SetMinScale(System.Nullable<double> value);

Parameters

value System.Nullable<System.Double>

Returns

System.Threading.Tasks.Task