Class ShapeFileReader
Represents the ShapeFileReader class.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.RadMap.dll
Syntax
public class ShapeFileReader
Constructors
ShapeFileReader()
Declaration
public ShapeFileReader()
Methods
Read(Stream)
Reads ESRI shape file from a stream.
Declaration
public List<MapVisualElement> Read(Stream shapeStream)
Parameters
System.IO.Stream
shapeStream
Stream of ESRI shape file. |
Returns
System.Collections.Generic.List<MapVisualElement>
List of elements that will be placed on an information layer. |
Read(Stream, Stream)
Reads ESRI shape file from the shape file and dbf file stream.
Declaration
public List<MapVisualElement> Read(Stream shapeStream, Stream dbfStream)
Parameters
System.IO.Stream
shapeStream
Stream of ESRI shape file. |
System.IO.Stream
dbfStream
Stream of DBF file. |
Returns
System.Collections.Generic.List<MapVisualElement>
List of elements that will be placed on an information layer. |
Read(Stream, Stream, Encoding)
Reads ESRI shape file from the shape file and dbf file stream.
Declaration
public List<MapVisualElement> Read(Stream shapeStream, Stream dbfStream, Encoding encoding)
Parameters
System.IO.Stream
shapeStream
Stream of ESRI shape file. |
System.IO.Stream
dbfStream
Stream of DBF file. |
System.Text.Encoding
encoding
DBF-file encoding. |
Returns
System.Collections.Generic.List<MapVisualElement>
List of elements that will be placed on an information layer. |
Read(Stream, Stream, ExtendedPropertySet)
Reads ESRI shape file from the shape file and dbf file stream.
Declaration
public List<MapVisualElement> Read(Stream shapeStream, Stream dbfStream, ExtendedPropertySet extendedPropertySet)
Parameters
System.IO.Stream
shapeStream
Stream of ESRI shape file. |
System.IO.Stream
dbfStream
Stream of DBF file. |
ExtendedPropertySet
extendedPropertySet
The ExtendedPropertySet for data from dbf-file. |
Returns
System.Collections.Generic.List<MapVisualElement>
List of elements that will be placed on an information layer. |
Read(Stream, Stream, ExtendedPropertySet, Encoding)
Reads ESRI shape file from the shape file and dbf file stream.
Declaration
public List<MapVisualElement> Read(Stream shapeStream, Stream dbfStream, ExtendedPropertySet extendedPropertySet, Encoding encoding)
Parameters
System.IO.Stream
shapeStream
Stream of ESRI shape file. |
System.IO.Stream
dbfStream
Stream of DBF file. |
ExtendedPropertySet
extendedPropertySet
The ExtendedPropertySet for data from dbf-file. |
System.Text.Encoding
encoding
DBF-file encoding. |
Returns
System.Collections.Generic.List<MapVisualElement>
List of elements that will be placed on an information layer. |
Read(Stream, Stream, ExtendedPropertySet, Encoding, ICoordinateConverter)
Reads ESRI shape file from the shape file and dbf file stream.
Declaration
public List<MapVisualElement> Read(Stream shapeStream, Stream dbfStream, ExtendedPropertySet extendedPropertySet, Encoding encoding, ICoordinateConverter coordinateConverter)
Parameters
System.IO.Stream
shapeStream
Stream of ESRI shape file. |
System.IO.Stream
dbfStream
Stream of DBF file. |
ExtendedPropertySet
extendedPropertySet
The ExtendedPropertySet for data from dbf-file. |
System.Text.Encoding
encoding
DBF-file encoding. |
ICoordinateConverter
coordinateConverter
The Coordinate Converter. |
Returns
System.Collections.Generic.List<MapVisualElement>
List of elements that will be placed on an information layer. |
Read(Stream, Stream, ExtendedPropertySet, ICoordinateConverter)
Reads ESRI shape file from the shape file and dbf file stream.
Declaration
public List<MapVisualElement> Read(Stream shapeStream, Stream dbfStream, ExtendedPropertySet extendedPropertySet, ICoordinateConverter coordinateConverter)
Parameters
System.IO.Stream
shapeStream
Stream of ESRI shape file. |
System.IO.Stream
dbfStream
Stream of DBF file. |
ExtendedPropertySet
extendedPropertySet
The ExtendedPropertySet for data from dbf-file. |
ICoordinateConverter
coordinateConverter
The Coordinate Converter. |
Returns
System.Collections.Generic.List<MapVisualElement>
List of elements that will be placed on an information layer. |
Read(ShapeFileReaderParameters)
Reads ESRI shape file according to specified parameters.
Declaration
public List<MapVisualElement> Read(ShapeFileReaderParameters parameters)
Parameters
ShapeFileReaderParameters
parameters
The parameters of shape-file reader. |
Returns
System.Collections.Generic.List<MapVisualElement>
List of elements that will be placed on an information layer. |