BaseGpsReceiverDrawSatellites Method

ZylGpsReceiver.NET Mobile
Draws the satellites in view. Grey brush satellite - no signal Red brush satellite - very low signal Yellow brush satellite - low signal Light green brush satellite - medium signal Green brush satellite - good signal White pen satellite - GPS Orange red pen satellite - GLONASS Yellow pen satellite - BeiDou Blue pen satellite - Galileo Green pen satellite - QZSS Black pen satellite - Unknown

Namespace:  ZylSoft.Gps.Mobile
Assembly:  ZylGpsReceiverMobile (in ZylGpsReceiverMobile.dll) Version: 3.14.6846.29005
Syntax

public void DrawSatellites(
	Graphics g,
	int radius,
	Color backColor,
	Color foreColor
)

Parameters

g
Type: System.DrawingGraphics
GDI+ drawing surface.
radius
Type: SystemInt32
Radius of the great circle.
backColor
Type: System.DrawingColor
Back color of the view.
foreColor
Type: System.DrawingColor
Fore color of the view.
Examples

Put a PictureBox control on your form. In the Draw event of the PictureBox use the following code: gpsReceiver.DrawSatellites(e.Graphics, Math.Min(pictureBox.Width, pictureBox.Height)/2, Color.Black, Color.White);
See Also

Reference