0

i was wondering if anyone knows of any gps receivers that have a fairly good API..

I am hoping to develop a simple app that will show my location (live) on google maps using the google maps api but of course would need an recevier that i can interface with too whilst on the move.

Cheers.

NB: Work would be done in c#.

Grant
  • 11,138
  • 32
  • 94
  • 140

1 Answers1

1

Most still provide a serial connection. Coordinates would be coming in ASCII format, and that is super-easy to process.

Hamish Grubijan
  • 10,562
  • 23
  • 99
  • 147
  • As referenced in https://stackoverflow.com/questions/9542473/read-data-from-an-usb-gps-receiver, pretty much all GPS receivers speak a standard protocol called NMEA 0183, and most USB or Bluetooth receivers show up as a virtual COM port which you can read from like a file (mostly). There are some good C# libraries already to help you parse the data too. – coderanger Jun 13 '18 at 01:11