KmlReader
Represents the KmlReader class.
Definition
Namespace:Telerik.Windows.Controls.Map
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
public static class KmlReader
Inheritance: objectKmlReader
Methods
Reads Kml file from a stream.
Reads Kml file from a stream.
public static List<FrameworkElement> Read(Stream stream, ExtendedPropertySet extendedPropertySet, DataTemplate pointTemplate)
Stream of Kml file.
extendedPropertySetExtendedPropertySetExtended property set for extended data.
pointTemplateDataTemplateTemplate of Point object.
Returns:List<FrameworkElement>
List of elements that will be placed on an information layer.
Reads Kml file from a stream.
public static List<FrameworkElement> Read(Stream stream, ExtendedPropertySet extendedPropertySet)
Stream of Kml file.
extendedPropertySetExtendedPropertySetExtended property set for extended data.
Returns:List<FrameworkElement>
List of elements that will be placed on an information layer.
Reads Kml file from a string.
public static List<FrameworkElement> Read(string value, ExtendedPropertySet extendedPropertySet, DataTemplate pointTemplate)
String of Kml.
extendedPropertySetExtendedPropertySetExtended property set for extended data.
pointTemplateDataTemplateTemplate of Point object.
Returns:List<FrameworkElement>
List of elements that will be placed on an information layer.
Reads Kml file from a string.
public static List<FrameworkElement> Read(string value, ExtendedPropertySet extendedPropertySet)
String of Kml.
extendedPropertySetExtendedPropertySetExtended property set for extended data.
Returns:List<FrameworkElement>
List of elements that will be placed on an information layer.