layout: default title: ViewExtentUpdate parent: Core Classes —

dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components.Views

ViewExtentUpdate Class

A class to represent all the parameters that make up the extent of the map view.

public class ViewExtentUpdate :
System.IEquatable<dymaptic.GeoBlazor.Core.Components.Views.ViewExtentUpdate>

Inheritance System.Object 🡒 ViewExtentUpdate

Implements System.IEquatable<ViewExtentUpdate>

Constructors

ViewExtentUpdate(Extent, Point, double, double, Nullable, Nullable) Constructor

A class to represent all the parameters that make up the extent of the map view.

public ViewExtentUpdate(dymaptic.GeoBlazor.Core.Components.Geometries.Extent Extent, dymaptic.GeoBlazor.Core.Components.Geometries.Point? Center, double Scale, double Zoom, System.Nullable<double> Rotation=null, System.Nullable<double> Tilt=null);

Parameters

Extent Extent

The Extent of the view.

Center Point

The Point that represents the center of the view.

Scale System.Double

The scale of the view.

Zoom System.Double

The zoom level of the view.

Rotation System.Nullable<System.Double>

The rotation of the view.

Tilt System.Nullable<System.Double>

The tilt of the 3d view camera.

Properties

ViewExtentUpdate.Center Property

The Point that represents the center of the view.

public dymaptic.GeoBlazor.Core.Components.Geometries.Point? Center { get; set; }

Property Value

Point

ViewExtentUpdate.Extent Property

The Extent of the view.

public dymaptic.GeoBlazor.Core.Components.Geometries.Extent Extent { get; set; }

Property Value

Extent

ViewExtentUpdate.Rotation Property

The rotation of the view.

public System.Nullable<double> Rotation { get; set; }

Property Value

System.Nullable<System.Double>

ViewExtentUpdate.Scale Property

The scale of the view.

public double Scale { get; set; }

Property Value

System.Double

ViewExtentUpdate.Tilt Property

The tilt of the 3d view camera.

public System.Nullable<double> Tilt { get; set; }

Property Value

System.Nullable<System.Double>

ViewExtentUpdate.Zoom Property

The zoom level of the view.

public double Zoom { get; set; }

Property Value

System.Double