There is a minor typo on this page:
https://github.com/angular/components/blob/master/src/google-maps/map-geocoder/README.md
It has "takes" twice:
"The MapGeocoder.geocode method takes takes the .."
It might also be helpful to some devs to mention in this README that GeoCoder is defined as ;
@Injectable({providedIn: 'root'})
and so automatically works as a singleton service (e.g. no need to explicitly list it as a provider in AppModule) and perhaps add a link to this page:
https://angular.io/guide/singleton-services
(same applies to MapDirectionsService)