Hello, plotting the gps point is done using the map() function. If you can post a sample of your gps text file I can show you how to do it.
Basically, specify your bounds:
Go to
http://itouchmap.com/latlong.html and get the upper and lower gps bounds you want to use in your map
// Map coordinate (start and end points)
float w_start; // Longtitude start (largest longitude value)
float w_end; // Longtitude end (smallest longitude value)
float h_start; // Latitude start (largest latitude value)
float h_end; // Latitude end (smallest latitude value)
mapX1 = 0;
mapX2 = width;
mapY1 = 0;
mapY2 = height;
For each point x and y in gps coordinates, to convert to pixel values use:
x = map(x, w_start, w_end, mapX1, mapX2);
y = map(y, h_end, h_start, mapY1, mapY2);