KmlReader
Class
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.RadMap.dll
Syntax:
C#
public static class KmlReader
Inheritance: objectKmlReader
Properties
C#
public static string LocalImagesFolder { get; set; }
Methods
Reads Kml file from a stream.
C#
public static List<MapVisualElement> Read(Stream stream, ExtendedPropertySet extendedPropertySet)
Stream of Kml file.
extendedPropertySetExtendedPropertySetExtended property set for extended data.
Returns:List<MapVisualElement>
List of elements that will be placed on an information layer.
Reads Kml file from a stream.
C#
public static List<MapVisualElement> Read(Stream stream)
Stream of Kml file.
Returns:List<MapVisualElement>
List of elements that will be placed on an information layer.
Reads Kml file from a string.
C#
public static List<MapVisualElement> Read(string value, ExtendedPropertySet extendedPropertySet)
String of Kml.
extendedPropertySetExtendedPropertySetExtended property set for extended data.
Returns:List<MapVisualElement>
List of elements that will be placed on an information layer.
Reads Kml file from a string.
C#
public static List<MapVisualElement> Read(string value)
String of Kml.
Returns:List<MapVisualElement>
List of elements that will be placed on an information layer.