Treat the code like an image — you can use HTML or CSS to display it.
[[buildMapURL()]]
HTML
<img width="[[base.width]]" src="[[buildMapURL()]]" alt="Google Map[[base.auto != true && ' of '+ base.location || '' ]]">
Map with link to Google Maps
<a href="https://www.google.com/maps/place/[[ base.location.split(' ').join('+') ]]/"><img src="[[buildMapURL()]]" alt="Google Map of [[base.location]]"></a>
Map with link to Google Maps directions
<a href="https://www.google.com/maps/dir//[[ base.location.split(' ').join('+') ]]/"><img src="[[buildMapURL()]]" alt="Google Map of [[base.location]]"></a>
CSS
background-image: url([[buildMapURL()]]);
You can add a static map to any website with simple HTML and no JavaScript.
Using URL parameters, you can describe the type of map that you want and Google will send it back.
The Static Map Maker helps you configure the Google API parameters
and gives you the code in real time.
Check out Google's static maps API.