Turn RMC to Google maps link - Help needed

I want the Arduino to send me the RMC data from the GPS to my phone true SIM900.
its one ting to sendt RMC data, Got that working, but its a other ting making the Arduino create an google maps link with the arduino.
Does anyone know how to do this?

Here is my RMC data:
$GPRMC,212922,A,6717.7252,N,1437.7508,E,4.83,15.43,040914,003.1,W*6A

The URL for Google maps is / was something like 'http://maps.google.com/maps/api/geocode/xml?latlng=12.345678,-1.234567'. Just put your co-ordinates in the URL.

Sow I take
lat
6717.7252 = 67 + (17.7252/60) = 67.29542
Lon
1437.7508,E= 14 + (37.7508/60) = 14.62918

And get:
https://www.google.no/maps/place/67.29542,14.62918

Now I need to make a code that will do this.

Now I need to make a code that will do this.

You have our permission to do just that.