layout: default title: GeoRSSLayer parent: Core Classes —

dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components.Layers

GeoRSSLayer Class

The GeoRSSLayer class is used to create a layer based on GeoRSS. GeoRSS is a way to add geographic information to
an RSS feed. The GeoRSSLayer supports both GeoRSS-Simple and GeoRSS GML encodings, and multiple geometry types.
ArcGIS Maps SDK for JavaScript

public class GeoRSSLayer : dymaptic.GeoBlazor.Core.Components.Layers.Layer

Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 Layer 🡒 GeoRSSLayer

Constructors

GeoRSSLayer() Constructor

Parameterless constructor for use as a razor component

public GeoRSSLayer();

GeoRSSLayer(string, string, Nullable, Nullable, Nullable) Constructor

Constructor for use in code

public GeoRSSLayer(string url, string? title=null, System.Nullable<double> opacity=null, System.Nullable<bool> visible=null, System.Nullable<dymaptic.GeoBlazor.Core.Components.Layers.ListMode> listMode=null);

Parameters

url System.String

The url for the GeoRSS source data.

title System.String

The title of the layer used to identify it in places such as the Legend and LayerList widgets.

opacity System.Nullable<System.Double>

The opacity of the layer.

visible System.Nullable<System.Boolean>

Indicates if the layer is visible in the View. When false, the layer may still be added to a Map instance that is
referenced in a view, but its features will not be visible in the view.

listMode System.Nullable<ListMode>

Indicates how the layer should display in the LayerList widget. The possible values are listed below.

Properties

GeoRSSLayer.LayerType Property

Used internally to identify the sub type of Layer

public override string LayerType { get; }

Property Value

System.String

GeoRSSLayer.Url Property

The url for the GeoRSS source data.

public string? Url { get; set; }

Property Value

System.String