ThinkGeo Cloud
ThinkGeo UI Controls
ThinkGeo Open Source
Help and Support
External Resources
ThinkGeo Cloud
ThinkGeo UI Controls
ThinkGeo Open Source
Help and Support
External Resources
This is an old revision of the document!
Class KmlLayer.
None
N/A
Initializes a new instance of the class.
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
RequestDrawing(IEnumerable<RectangleShape>,TimeSpan)
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A

CreateKmlFile(String,Encoding)
Creates the KML file.
N/A

CreateKmlFile(String,FeatureLayer)
Creates the KML file.
N/A

CreateKmlFile(String,FeatureLayer,KmlFileType)
Creates the KML file.
N/A

CreateKmlFile(String,FeatureLayer,KmlFileType,Encoding)
Creates the KML file.
N/A

CreateKmlFile(String,RasterLayer)
Creates the KML file.
N/A

CreateKmlFile(String,RasterLayer,KmlFileType)
Creates the KML file.
N/A

CreateKmlFile(String,IEnumerable<MapShape>)
Creates the KML file.
N/A

CreateKmlFile(String,IEnumerable<MapShape>,KmlFileType)
Creates the KML file.
N/A

CreateKmlFile(String,IEnumerable<MapShape>,KmlFileType,Encoding)
Creates the KML file.
N/A

AddLayerToKml(FeatureLayer,String)
Adds the layer to KML.
N/A

AddLayerToKml(RasterLayer,String)
Adds the layer to KML.
N/A

AddLayerToKml(AdornmentLayer,String)
Adds the layer to KML.
N/A

AddMapShapesToKml(IEnumerable<MapShape>,String)
Adds the map shapes to KML.
N/A

AddLayersToKml(IEnumerable<Layer>,String)
Adds the layers to KML.
N/A
This abstract method is called from the concrete public method Open. The open method plays an important role, as it is responsible for initializing the Layer. Most methods on the Layer will throw an exception if the state of the Layer is not opened. When the map draws each layer, the layer will be opened as one of its first steps; then, after it is finished drawing with that layer, it will close it. In this way, we are sure to release all resources used by the Layer. When implementing the abstract method, consider opening the FeatureSource or RasterSource. You will get a chance to close these in the Close method of the Layer.
This abstract method is called from the concrete public method Close. The close method plays an important role in the life cycle of the Layer. It may be called after drawing to release any memory and other resources that were allocated since the Open method was called. If you override this method, it is recommended that you take the following things into account: This method may be called multiple times, so we suggest you write the method so that that a call to a closed Layer is ignored and does not generate an error. We also suggest that in the Close you free all resources that have been opened. Remember that the object will not be destroyed, but will be re-opened possibly in the near future.
This method is the concrete wrapper for the abstract method DrawCore. This method draws the representation of the layer based on the extent you provided. When implementing this abstract method, consider each feature and its column data values. You can use the full power of the GeoCanvas to do the drawing. If you need column data for a feature, be sure to override the GetRequiredColumnNamesCore and add the columns you need to the collection. In many of the styles, we add properties that allow the user to specify which field they need; then, in the GetRequiredColumnNamesCore, we read that property and add it to the collection.
This method returns the bounding box of the Layer.
This method returns the bounding box of the Layer.
N/A
N/A
N/A
DrawExceptionCore(GeoCanvas,Exception)
N/A
N/A
OnDrawingException(DrawingExceptionLayerEventArgs)
N/A
N/A
N/A
N/A
OnDrawingAttribution(DrawingAttributionLayerEventArgs)
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
This property indicates whether a Layer has a BoundingBox or not. If it has no BoundingBox, it will throw an exception when you call the GetBoundingBox() and GetFullExtent() APIs.
The default value is false.
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
Event Arguments:RequestingDrawingLayerEventArgs