Delegate called for each KML item as it is loaded from the KML file into the map.
'Declaration
Public Delegate Function AddingKmlItemDelegate( _
ByRef As System.String, _
ByRef As System.Nullable(Of Color), _
ByRef As System.Nullable(Of Color), _
ByRef As System.Boolean _
) As System.Boolean
public delegate System.bool AddingKmlItemDelegate(
ref System.string ,
out System.Nullable<Color> ,
out System.Nullable<Color> ,
out System.bool
)
Parameters
- itemName
- IN/OUT: the item name.
- stroke
- OUT: item stroke color (null uses color specified in the KML data).
- fill
- OUT: item fill color (null uses color specified in the KML data).
- trackCoords
- OUT: indicates whether the item's coordinates should be used to auto size/zoom the map.
Return Value
True to include an item in the map, false to exclude it.