Represents the Infragistics IgbGeographicMap control.
InheritanceSystem.Object
IgbGeographicMap
ImplementsSystem.IDisposable
Namespace: IgniteUI.Blazor.Controls Assembly: IgniteUI.Blazor.dll Syntaxpublic class IgbGeographicMap : IgbSeriesViewer, RefSink, JsonSerializable, IDisposable
Constructors IgbGeographicMap() Declaration
public IgbGeographicMap()
Properties ActualWindowScale
A number between 0 and 1 determining the scale of the horizontal/vertical zoom.
Declarationpublic double ActualWindowScale { get; set; }
Property Value Type Description System.Double ActualWorldRect
Gets the actual value of the WorldRect.
Declarationpublic Rect ActualWorldRect { get; set; }
Property Value BackgroundContent
A UIElement to display behind all series, inside the viewport of the IgbGeographicMap control.
Declarationpublic IgbGeographicMapImagery BackgroundContent { get; set; }
Property Value BackgroundTilingMode
Gets or sets if the map should horizontally wrap.
Declarationpublic MapBackgroundTilingMode BackgroundTilingMode { get; set; }
Property Value ImageTilesReady Declaration
public Action<IgbImageTilesReadyEventArgs> ImageTilesReady { get; set; }
Property Value ImageTilesReadyScript Declaration
public string ImageTilesReadyScript { get; set; }
Property Value Type Description System.String IsHorizontalWrappingEnabled
Gets or sets if the map should horizontally wrap.
Declarationpublic bool IsHorizontalWrappingEnabled { get; set; }
Property Value Type Description System.Boolean NeedsDynamicContent Declaration
protected override bool NeedsDynamicContent { get; }
Property Value Type Description System.Boolean Overrides ResizeBehavior
Gets or sets the behavior to use during resize.
Declarationpublic MapResizeBehavior ResizeBehavior { get; set; }
Property Value SuppressZoomResetOnWorldRectChange
Gets or sets whether skip resetting the zoom when the world rect changes.
Declarationpublic bool SuppressZoomResetOnWorldRectChange { get; set; }
Property Value Type Description System.Boolean Type Declaration
public override string Type { get; }
Property Value Type Description System.String Overrides UseWorldRectForZoomBounds
Gets or sets whether to use the uncoerced world rect to constrain the zoom bounds.
Declarationpublic bool UseWorldRectForZoomBounds { get; set; }
Property Value Type Description System.Boolean WindowScale
A number between 0 and 1 determining the scale of the horizontal/vertical zoom.
Declarationpublic double WindowScale { get; set; }
Property Value Type Description System.Double WorldRect
Gets or sets the world bounding rectangle.
Declarationpublic Rect WorldRect { get; set; }
Property Value Zoomable
Gets or sets zoomability of the current control
Declarationpublic bool Zoomable { get; set; }
Property Value Type Description System.Boolean Methods ClearTileCache() Declaration
public void ClearTileCache()
ClearTileCacheAsync()
Removes all cached tile images from the map imagery assigned to the map's background content.
Declarationpublic Task ClearTileCacheAsync()
Returns Type Description System.Threading.Tasks.Task ConvertGeographicToZoom(Rect, Double) Declaration
public Rect ConvertGeographicToZoom(Rect geographic, double extraPixelPadding)
Parameters Type Name Description Rect geographic System.Double extraPixelPadding Returns ConvertGeographicToZoomAsync(Rect, Double) Declaration
public Task<Rect> ConvertGeographicToZoomAsync(Rect geographic, double extraPixelPadding)
Parameters Type Name Description Rect geographic System.Double extraPixelPadding Returns Type Description System.Threading.Tasks.Task<Rect> DeferredRefresh() Declaration
public void DeferredRefresh()
DeferredRefreshAsync()
Calls for a deferred refresh to the GeographicMap's background.
Declarationpublic Task DeferredRefreshAsync()
Returns Type Description System.Threading.Tasks.Task EnsureModulesLoaded() Declaration
protected override void EnsureModulesLoaded()
Overrides ExportVisualData() Declaration
public object ExportVisualData()
Returns Type Description System.Object ExportVisualDataAsync()
Returns the chart visuals expressed as a ChartVisualData object.
Declarationpublic Task<object> ExportVisualDataAsync()
Returns Type Description System.Threading.Tasks.Task<System.Object> FindByName(String) Declaration
public override object FindByName(string name)
Parameters Type Name Description System.String name Returns Type Description System.Object Overrides GetActualWindowScaleHorizontal() Declaration
public override double GetActualWindowScaleHorizontal()
Returns Type Description System.Double Overrides GetActualWindowScaleHorizontalAsync()
Gets actual window scale for horizontal dimension of the control
Declarationpublic override Task<double> GetActualWindowScaleHorizontalAsync()
Returns Type Description System.Threading.Tasks.Task<System.Double> Overrides GetActualWindowScaleVertical() Declaration
public override double GetActualWindowScaleVertical()
Returns Type Description System.Double Overrides GetActualWindowScaleVerticalAsync()
Gets actual window scale for vertical dimension of the control
Declarationpublic override Task<double> GetActualWindowScaleVerticalAsync()
Returns Type Description System.Threading.Tasks.Task<System.Double> Overrides GetCurrentActualWorldRect() Declaration
public Rect GetCurrentActualWorldRect()
Returns GetCurrentActualWorldRectAsync()
Gets current world rect in geographic coordinates
Declarationpublic Task<Rect> GetCurrentActualWorldRectAsync()
Returns Type Description System.Threading.Tasks.Task<Rect> GetGeographicFromZoom(Rect) Declaration
public Rect GetGeographicFromZoom(Rect windowRect)
Parameters Type Name Description Rect windowRect Returns GetGeographicFromZoomAsync(Rect)
Given a WindowRect and the current plot area, get the geographic region represented by that WindowRect.
Declarationpublic Task<Rect> GetGeographicFromZoomAsync(Rect windowRect)
Parameters Type Name Description Rect windowRect
The zoom area.
Returns Type Description System.Threading.Tasks.Task<Rect> GetGeographicPoint(Point) Declarationpublic Point GetGeographicPoint(Point pixelCoordinate)
Parameters Type Name Description Point pixelCoordinate Returns GetGeographicPointAsync(Point)
Convert a pixel-based coordinate to a geographic coordinate.
Declarationpublic Task<Point> GetGeographicPointAsync(Point pixelCoordinate)
Parameters Type Name Description Point pixelCoordinate
A pixel-based coordinate
Returns Type Description System.Threading.Tasks.Task<Point> GetPixelPoint(Point) Declarationpublic Point GetPixelPoint(Point geographicCoordinate)
Parameters Type Name Description Point geographicCoordinate Returns GetPixelPointAsync(Point)
Convert a geographic coordinate to a pixel-based coordinate.
Declarationpublic Task<Point> GetPixelPointAsync(Point geographicCoordinate)
Parameters Type Name Description Point geographicCoordinate
A geographic coordinate
Returns Type Description System.Threading.Tasks.Task<Point> GetWindowPoint(Point) Declarationpublic Point GetWindowPoint(Point geographicCoordinate)
Parameters Type Name Description Point geographicCoordinate Returns GetWindowPointAsync(Point)
Convert a geographic coordinate to a pixel-based coordinate.
Declarationpublic Task<Point> GetWindowPointAsync(Point geographicCoordinate)
Parameters Type Name Description Point geographicCoordinate
A geographic coordinate
Returns Type Description System.Threading.Tasks.Task<Point> GetZoomFromGeographicPoints(Point, Point) Declarationpublic Rect GetZoomFromGeographicPoints(Point northWest, Point southEast)
Parameters Type Name Description Point northWest Point southEast Returns GetZoomFromGeographicPointsAsync(Point, Point) Declaration
public Task<Rect> GetZoomFromGeographicPointsAsync(Point northWest, Point southEast)
Parameters Type Name Description Point northWest Point southEast Returns Type Description System.Threading.Tasks.Task<Rect> GetZoomFromGeographicRect(Rect) Declaration
public Rect GetZoomFromGeographicRect(Rect geographic)
Parameters Type Name Description Rect geographic Returns GetZoomFromGeographicRectAsync(Rect)
Given the current plot area of the control and a geographic region, get the WindowRect that would encompass that geographic region.
Declarationpublic Task<Rect> GetZoomFromGeographicRectAsync(Rect geographic)
Parameters Type Name Description Rect geographic
The geographic area.
Returns Type Description System.Threading.Tasks.Task<Rect> GetZoomRectFromGeoRect(Rect) Declarationpublic Rect GetZoomRectFromGeoRect(Rect geographic)
Parameters Type Name Description Rect geographic Returns GetZoomRectFromGeoRectAsync(Rect)
Given the current plot area of the control and a geographic region, get the WindowRect that would encompass that geographic region.
Declarationpublic Task<Rect> GetZoomRectFromGeoRectAsync(Rect geographic)
Parameters Type Name Description Rect geographic
The geographic area.
Returns Type Description System.Threading.Tasks.Task<Rect> StyleUpdated() Declarationpublic void StyleUpdated()
StyleUpdatedAsync()
Notifies the chart that the CSS styles in effect have been updated.
Declarationpublic Task StyleUpdatedAsync()
Returns Type Description System.Threading.Tasks.Task UpdateWorldRect(Rect) Declaration
public void UpdateWorldRect(Rect worldRect)
Parameters Type Name Description Rect worldRect UpdateWorldRectAsync(Rect)
Updates world rect in geographic coordinates
Declarationpublic Task UpdateWorldRectAsync(Rect worldRect)
Parameters Type Name Description Rect worldRect Returns Type Description System.Threading.Tasks.Task UpdateZoomWindow(Rect) Declaration
public void UpdateZoomWindow(Rect zoomWindow)
Parameters Type Name Description Rect zoomWindow UpdateZoomWindowAsync(Rect)
Updates zoom window using window coordinates
Declarationpublic Task UpdateZoomWindowAsync(Rect zoomWindow)
Parameters Type Name Description Rect zoomWindow Returns Type Description System.Threading.Tasks.Task ZoomToGeographic(Rect) Declaration
public void ZoomToGeographic(Rect geographic)
Parameters Type Name Description Rect geographic ZoomToGeographicAsync(Rect)
Zoom in to the geographic region specified, when possible (may need to wait for map to be initialized).
Declarationpublic Task ZoomToGeographicAsync(Rect geographic)
Parameters Type Name Description Rect geographic
The geographic region to zoom to.
Returns Type Description System.Threading.Tasks.Task ImplementsSystem.IDisposable
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4