dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Model
Screenshot Class
Represents a screenshot of the map view.
public class Screenshot :
System.IEquatable<dymaptic.GeoBlazor.Core.Model.Screenshot>
Inheritance System.Object 🡒 Screenshot
Implements System.IEquatable<Screenshot>
Constructors
Screenshot(string, ImageData) Constructor
Represents a screenshot of the map view.
public Screenshot(string DataUrl, dymaptic.GeoBlazor.Core.Model.ImageData Data);
Parameters
DataUrl
System.String
The data url of the screenshot, beginning with data:image/png:base64,
. Can be used as a source for an image element.
Data
ImageData
The ImageData for the screenshot.
Properties
Screenshot.Data Property
The ImageData for the screenshot.
public dymaptic.GeoBlazor.Core.Model.ImageData Data { get; set; }
Property Value
Screenshot.DataUrl Property
The data url of the screenshot, beginning with data:image/png:base64,
. Can be used as a source for an image element.
public string DataUrl { get; set; }