GPS neo 6m on LCD

i have a gps module u-blox neo 6m, arduino uno and, LCD.. and i need the longtitude and latitude data are displayed at LCD 2x16. How can I connect them and what about their codes? Please help me. Thank you

First get the GPS talking to the Uno and display the output from the GPS in the serial monitor. GPS to serial monitor.
to get started. Then add the TinyGPS library to parse the sentences to obtain the lat and lon into variables.
TinyGPS library There are example codes to get going with TinyGPS included with the library.

Then connect the LCD to the Uno, without the GPS connected. You have not specified the LCD and there are many different interfaces for LCDs ( 8 wire, 4 wire, I2C, serial). You will need a library to control the LCD. Here is the best that I have found. liquid crystal library Get the LCD to display data hard coded in a sketch.

Now you have everything you need to obtain and display lat and lon on a LCD.

Crosspost removed.