layout: default title: TileInfo parent: Core Classes —
dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components.Layers
TileInfo Class
Contains information about the tiling scheme for TileLayers, ElevationLayers, ImageryTileLayers, VectorTileLayers,
and WebTileLayers.
ArcGIS Maps SDK for JavaScript
public class TileInfo : dymaptic.GeoBlazor.Core.Components.MapComponent
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 TileInfo
Properties
TileInfo.Dpi Property
The dots per inch (DPI) of the tiling scheme.
public System.Nullable<double> Dpi { get; set; }
Property Value
System.Nullable<System.Double>
TileInfo.Format Property
Image format of the cached tiles.
public System.Nullable<dymaptic.GeoBlazor.Core.Components.Layers.TileInfoFormat> Format { get; set; }
Property Value
System.Nullable<TileInfoFormat>
TileInfo.IsWrappable Property
Indicates if the tiling scheme supports wrap around.
public System.Nullable<bool> IsWrappable { get; set; }
Property Value
System.Nullable<System.Boolean>
TileInfo.Lods Property
An array of levels of detail that define the tiling scheme.
public System.Collections.Generic.IList<dymaptic.GeoBlazor.Core.Components.LOD>? Lods { get; set; }
Property Value
System.Collections.Generic.IList<LOD>
TileInfo.Origin Property
The tiling scheme origin
public dymaptic.GeoBlazor.Core.Components.Geometries.Point? Origin { get; set; }
Property Value
TileInfo.Size Property
Size of tiles in pixels.
public System.Collections.Generic.IList<double>? Size { get; set; }
Property Value
System.Collections.Generic.IList<System.Double>
TileInfo.SpatialReference Property
The spatial reference of the tiling schema.
public dymaptic.GeoBlazor.Core.Components.Geometries.SpatialReference? SpatialReference { get; set; }
Property Value
Methods
TileInfo.RegisterChildComponent(MapComponent) Method
Called from dymaptic.GeoBlazor.Core.Components.MapComponent.OnInitializedAsync to “Register” the current component with it’s parent.
public override System.Threading.Tasks.Task RegisterChildComponent(dymaptic.GeoBlazor.Core.Components.MapComponent child);
Parameters
child
MapComponent
The calling, child component to register
Returns
Exceptions
InvalidChildElementException
Throws if the current child is not a valid sub-component to the parent.
Remarks
This method is an implementation detail and should not be called directly by consumers. In future versions, this may be changed to an internal method. If you see no other way to register a child component, please open an issue on GitHub.
TileInfo.UnregisterChildComponent(MapComponent) Method
Undoes the “Registration” of a child with its parent.
public override System.Threading.Tasks.Task UnregisterChildComponent(dymaptic.GeoBlazor.Core.Components.MapComponent child);
Parameters
child
MapComponent
The child to unregister
Returns
Remarks
This method is an implementation detail and should not be called directly by consumers. In future versions, this may be changed to an internal method.