Reputation: 19
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
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