Class
KmlReader

Represents the KmlReader class.

Definition

Namespace:Telerik.Windows.Controls.Map

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

cs-api-definition
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Kml")]
public static class KmlReader

Inheritance: objectKmlReader

Methods

Read(Stream)

Reads Kml file from a stream.

Declaration

cs-api-definition
public static List<FrameworkElement> Read(Stream stream)

Parameters

stream

Stream

Stream of Kml file.

Returns

List<FrameworkElement>

List of elements that will be placed on an information layer.

Read(Stream, DataTemplate)

Reads Kml file from a stream.

Declaration

cs-api-definition
public static List<FrameworkElement> Read(Stream stream, DataTemplate pointTemplate)

Parameters

stream

Stream

Stream of Kml file.

pointTemplate

DataTemplate

Template of Point object.

Returns

List<FrameworkElement>

List of elements that will be placed on an information layer.

Read(Stream, ExtendedPropertySet)

Reads Kml file from a stream.

Declaration

cs-api-definition
public static List<FrameworkElement> Read(Stream stream, ExtendedPropertySet extendedPropertySet)

Parameters

stream

Stream

Stream of Kml file.

extendedPropertySet

ExtendedPropertySet

Extended property set for extended data.

Returns

List<FrameworkElement>

List of elements that will be placed on an information layer.

Read(Stream, ExtendedPropertySet, DataTemplate)

Reads Kml file from a stream.

Declaration

cs-api-definition
public static List<FrameworkElement> Read(Stream stream, ExtendedPropertySet extendedPropertySet, DataTemplate pointTemplate)

Parameters

stream

Stream

Stream of Kml file.

extendedPropertySet

ExtendedPropertySet

Extended property set for extended data.

pointTemplate

DataTemplate

Template of Point object.

Returns

List<FrameworkElement>

List of elements that will be placed on an information layer.

Read(string)

Reads Kml file from a string.

Declaration

cs-api-definition
public static List<FrameworkElement> Read(string value)

Parameters

value

string

String of Kml.

Returns

List<FrameworkElement>

List of elements that will be placed on an information layer.

Read(string, DataTemplate)

Reads Kml file from a string.

Declaration

cs-api-definition
public static List<FrameworkElement> Read(string value, DataTemplate pointTemplate)

Parameters

value

string

String of Kml.

pointTemplate

DataTemplate

Template of Point object.

Returns

List<FrameworkElement>

List of elements that will be placed on an information layer.

Read(string, ExtendedPropertySet)

Reads Kml file from a string.

Declaration

cs-api-definition
public static List<FrameworkElement> Read(string value, ExtendedPropertySet extendedPropertySet)

Parameters

value

string

String of Kml.

extendedPropertySet

ExtendedPropertySet

Extended property set for extended data.

Returns

List<FrameworkElement>

List of elements that will be placed on an information layer.

Read(string, ExtendedPropertySet, DataTemplate)

Reads Kml file from a string.

Declaration

cs-api-definition
public static List<FrameworkElement> Read(string value, ExtendedPropertySet extendedPropertySet, DataTemplate pointTemplate)

Parameters

value

string

String of Kml.

extendedPropertySet

ExtendedPropertySet

Extended property set for extended data.

pointTemplate

DataTemplate

Template of Point object.

Returns

List<FrameworkElement>

List of elements that will be placed on an information layer.