layout: default title: ImageMediaInfoValue parent: Core Classes —

dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components.Popups

ImageMediaInfoValue Class

The ImageMediaInfoValue class contains information for popups regarding how images should be retrieved.
ArcGIS Maps SDK for JavaScript

public class ImageMediaInfoValue : dymaptic.GeoBlazor.Core.Components.MapComponent

Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 ImageMediaInfoValue

Constructors

ImageMediaInfoValue() Constructor

Parameterless constructor for use as a razor component.

public ImageMediaInfoValue();

ImageMediaInfoValue(string, string) Constructor

Constructor for building a ImageMediaInfoValue in code.

public ImageMediaInfoValue(string? linkURL=null, string? sourceURL=null);

Parameters

linkURL System.String

A string containing a URL to be launched in a browser when a user clicks the image.

sourceURL System.String

A string containing the URL to the image.

Properties

ImageMediaInfoValue.LinkURL Property

A string containing a URL to be launched in a browser when a user clicks the image.

public string? LinkURL { get; set; }

Property Value

System.String

ImageMediaInfoValue.SourceURL Property

A string containing the URL to the image.

public string? SourceURL { get; set; }

Property Value

System.String