class Maps method .newGeocoder()

Maps is the Apps Script service.

.newGeocoder() is the method name you will see after a dot in your code.

What it does

Creates a geocoder to turn addresses into coordinates.

Why it's used

  • Turn street addresses into lat/long for mapping or routing.
  • Validate addresses before shipping or scheduling field work.

Common errors

  • Forgetting parentheses on newGeocoder. Write Maps.newGeocoder(), not Maps.newGeocoder or newGeocoder by itself.
  • Skipping dots between chained calls. Each step needs a dot, like Maps.newGeocoder().
  • Adding spaces where they do not belong. Write Maps.newGeocoder(), not Maps .newGeocoder(), Maps.newGeocoder (), or Maps . newGeocoder().
  • Wrong capitalization. Use Maps and newGeocoder, not maps or newgeocoder.

Explore

Related methods

Better Sheets tutorials

No tagged tutorials yet. Fetch Apps Script from the harvest table and this page fills automatically.

Related blog posts

Written guides about Maps.newGeocoder().

Browse the blog