user2408317
user2408317

Reputation: 19

How to get GPS location in C# desktop application?

i have to develop application which take GPS location , Can anybody tell how to get correct location To C# desktop application ?

Upvotes: 0

Views: 1847

Answers (1)

Spook
Spook

Reputation: 25927

Connect to the GPS receiver through the COM port (receivers usually connect to devices via Bluetooth virtual COM ports). Then, receiving current location is a simple matter of parsing NMEA sentences (usually $GPGGA or $GPGLL).

Upvotes: 1

Related Questions