layout: default title: Thumbnail parent: Core Classes —

dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components.Layers

Thumbnail Class

An object used to create a thumbnail image that represents a feature type in the feature template.

public class Thumbnail :
System.IEquatable<dymaptic.GeoBlazor.Core.Components.Layers.Thumbnail>

Inheritance System.Object 🡒 Thumbnail

Implements System.IEquatable<Thumbnail>

Constructors

Thumbnail(string, string, double, double) Constructor

An object used to create a thumbnail image that represents a feature type in the feature template.

public Thumbnail(string ContentType, string ImageData, double Height, double Width);

Parameters

ContentType System.String

The MIME type of the image.

ImageData System.String

The base64EncodedImageData presenting the thumbnail image.

Height System.Double

The height of the thumbnail.

Width System.Double

The width of the thumbnail.

Properties

Thumbnail.ContentType Property

The MIME type of the image.

public string ContentType { get; set; }

Property Value

System.String

Thumbnail.Height Property

The height of the thumbnail.

public double Height { get; set; }

Property Value

System.Double

Thumbnail.ImageData Property

The base64EncodedImageData presenting the thumbnail image.

public string ImageData { get; set; }

Property Value

System.String

Thumbnail.Width Property

The width of the thumbnail.

public double Width { get; set; }

Property Value

System.Double