You can get Lat Lng information from the response for this link. The response of this link would be an html file of google map. The position information is written somewhere in the javascript code inside the html. You can find the pattern "viewport:{center:{lat:xxx,lng:xxx}}" in the javascript code. For instance I found the lat and lng of your link is 41.999227 and 21.416496, which is the center of the map as well as the pinpointed place. Or you can find the markers position if you have more than one result:
codes for map center information:
viewport: {
center: {
lat: 41.999227,
lng: 21.416496
},
span: {
lat: 0.006295,
lng: 0.006295
},
zoom: 15,
mapType: 'm',
source: 0
},
...
codes for the markers:
markers: [{
id: 'A',
cid: '612446611849848549',
latlng: {
lat: 41.999227,
lng: 21.416496
},
...
In this case, the center of map and the marker has the same latlng information.