Creates a static map image from locations and markers.
class Maps method .newStaticMap()
Maps is the Apps Script service.
.newStaticMap() is the method name you will see after a dot in your code.
What it does
Why it's used
- Embed a map image in an email or slide with pinned locations.
- Show store or event locations without a full Maps UI.
Common errors
- Forgetting parentheses on newStaticMap. Write Maps.newStaticMap(), not Maps.newStaticMap or newStaticMap by itself.
- Skipping dots between chained calls. Each step needs a dot, like Maps.newStaticMap().
- Adding spaces where they do not belong. Write Maps.newStaticMap(), not Maps .newStaticMap(), Maps.newStaticMap (), or Maps . newStaticMap().
- Wrong capitalization. Use Maps and newStaticMap, not maps or newstaticmap.
Explore
Related methods
-
.newGeocoder()
Creates a geocoder to turn addresses into coordinates.
-
.newDirectionFinder()
Creates a directions helper to plan routes between places.
More Apps Script
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.newStaticMap().
What's Better Than Google Sheets?
Nothing is better than Google Sheets. You just need to learn more about the unlimited power of Google Sheets. Functions, Formulas, Apps Script and more.
Read post →How to Send Google Forms Entries Automatically with Apps Script
Google Forms provides basic email notifications for form submissions, but enhancing these notifications with detailed summaries can significantly improve productivity and response management.
Read post →How to Use Google Sheets as a Website Database
Did you know you can use Google Apps Script to turn a Google Sheet into a free, auto-syncing database for your website? This guide shows you exactly how to set it up. You’ll prepare your spreadsheet, write a few lines of code and publish your site. Don’t worry if you’re not a developer, we’ll walk you through it. Why Use Google Sheets as a Database? For small projects, Google Sheets offers many advantages over traditional databases: * Free hosting and storage * Easy to edit data without...
Read post →