I am trying to get predictions from google.maps.places.AutocompleteService with function getPlacePredictions (https://developers.google.com/maps/documentation/javascript/reference/places-autocomplete-service#AutocompletePrediction). I am getting good results but I would like to have extended response containing information about position on map (lat/lng) to be able to draw marker on map. Unfortunately I didn't find good solution and only option that I could find was running function geocoder.geocode({ placeId }) for each prediction but it is for sure bad approach. Is there any option to extend predictions with position?