Google Maps API
# getApiUrl(params = [])
Get the URL used internally for pinging the Google Maps JavaScript API.
{% set apiUrl = googleMaps.getApiUrl() %} {# As a normal method #}
{% set apiUrl = googleMaps.apiUrl %} {# As a magic property #}
# getBrowserKey()
Get the browser key.
{% set browserKey = googleMaps.getBrowserKey() %} {# As a normal method #}
{% set browserKey = googleMaps.browserKey %} {# As a magic property #}
# getServerKey()
Get the server key.
{% set serverKey = googleMaps.getServerKey() %} {# As a normal method #}
{% set serverKey = googleMaps.serverKey %} {# As a magic property #}
# setBrowserKey(key)
Override the browser key.
# setServerKey(key)
Override the server key.