{% import '_includes/forms' as forms %} {% import 'verbb-base/_macros' as macros %} {% set displayName = integration.displayName() %} {% set instructions %} ### Connect to the {name} API 1. Go to the Google Cloud Platform Console. 1. Click the **Select a project** button. Either create a new project, or select an existing one. 1. Select **Credentials** from the left side menu, and click **+ Create Credentials**, selecting **API Key**. 1. From the left side menu, select **Library**. 1. From the list of APIs enable both **Places API** and **Maps JavaScript API**. - If using the **Show Current Location Button** setting for your field, also add **Geocoding API**. {% endset %}
{{ instructions | t('formie', { name: displayName }) | md }}
{{ macros.proxyField(fieldVariables, 'autosuggestField', { label: 'API Key' | t('formie'), instructions: 'Enter your {name} {label} here.' | t('formie'), name: 'apiKey', required: true, suggestEnvVars: true, value: integration.settings.apiKey ?? '', warning: macros.configWarning('apiKey', 'formie'), errors: integration.getErrors('apiKey'), }) }} {{ macros.proxyField(fieldVariables, 'autosuggestField', { label: 'Geocoding API Key' | t('formie'), instructions: 'Enter your {name} {label} here, if different to your API Key.' | t('formie'), name: 'geocodingApiKey', suggestEnvVars: true, value: integration.settings.geocodingApiKey ?? '', warning: macros.configWarning('geocodingApiKey', 'formie'), errors: integration.getErrors('geocodingApiKey'), }) }} {{ macros.proxyField(fieldVariables, 'editableTableField', { label: 'Options' | t('formie'), instructions: 'Provide any additional options, as per the {link}.' | t('formie', { link: '[Google Places docs](https://developers.google.com/maps/documentation/javascript/places-autocomplete#add-autocomplete)' }), id: 'options', name: 'options', cols: [ { type: 'singleline', heading: 'Option' | t('formie'), width: '25%', }, { type: 'singleline', heading: 'Value' | t('formie'), }, ], rows: integration.settings.options ?? [], addRowLabel: 'Add an option' | t('formie'), warning: macros.configWarning('options', 'formie'), errors: integration.getErrors('options'), allowAdd: true, allowDelete: true, allowReorder: true, }) }}