Serial port and GPS

OsmDldTest.dld_progress Method 

Callback for showing progress of the download

[Visual Basic]
Private Shared Function dld_progress( _
   ByVal i As Integer, _
   ByVal n As Integer, _
   ByVal dldrec As OsmDldRec, _
   ByVal excp As Exception _
) As Boolean
[C#]
private static bool dld_progress(
   int i,
   int n,
   OsmDldRec dldrec,
   Exception excp
);

Parameters

i
sequential number of the downloaded map, 0 <= i < n or i < 0 for a general error.
n
total number of maps to download.
dldrec
Parameters of the downloaded sub-rectangle, like minimum and maximum latitude and longitude, name of the bitmap file etc.
excp
Exception occured during the download, null if everything ok.

Return Value

always true

See Also

OsmDldTest Class | serial Namespace