You're using SoftwareSerial on the Hardware UART. That won't work.
The UNO only has one Hardware UART (Serial) on pins 0 and 1, that's used for programming and debugging over USB. You can't use these pins for anything else if you want to use Serial.
Use SoftwareSerial on different pins, or get an Arduino that has an extra Hardware UART for the GPS module (e.g. Leonardo).
SoftwareSerial is a hack. You shouldn't use it.
The default output sentences are GPGGA, GPGSA, GPGSV, GPRMC, GPVTG and GPGLL. The default UART communication parameters are 9600 bps, 8 data bits, 1 stop bit, and no parity. Other baud rate and related configurations could be requested based on MOQ.
You may need to try 9600 instead of 4800 in Software Serial..
Unless the GPS has a fix, you wont see anything on the console, since its got no position to report.
Before using a GPS library check that the GPS is actuall outputing characters.
The 'Simple_SoftwareSerial_GPS_Echo' program will read characters form the GPS and print to the serial monitor, adjust the GPS TX and RX pins and baud rate to suit. The program can be found here;
There are better software serial libraries described here. It also describes connecting the GPS correctly.
That page is from the Installation instructions for my NeoGPS library. NeoGPS is smaller, faster, more accurate and more reliable than all other GPS libraries. Many other libraries' examples are not structured properly, and they break when you modify them.
NeoGPS is available from the Arduino Library Manager, under the menu Sketch-> Include Library-> Manage Libraries. Even if you don't use it, there are lots of tips on the Installation and Troubleshooting pages.