Title: Contact Form 7 extension for Google Map fields
Author: Aurovrata Venet
Published: <strong>18 Fevereiro, 2017</strong>
Last modified: 11 Julho, 2023

---

Procurar plugins

Este plugin **não foi testado com as 3 últimas grandes versões do WordPress**. Pode
já não ser suportado e pode ter problemas de compatibilidade quando usado com versões
mais recentes do WordPress.

![](https://s.w.org/plugins/geopattern-icon/cf7-google-map.svg)

# Contact Form 7 extension for Google Map fields

 Por [Aurovrata Venet](https://profiles.wordpress.org/aurovrata/)

[Descarregar](https://downloads.wordpress.org/plugin/cf7-google-map.1.9.0.zip)

 * [Detalhes](https://pt.wordpress.org/plugins/cf7-google-map/#description)
 * [Avaliações](https://pt.wordpress.org/plugins/cf7-google-map/#reviews)
 *  [Instalação](https://pt.wordpress.org/plugins/cf7-google-map/#installation)
 * [Desenvolvimento](https://pt.wordpress.org/plugins/cf7-google-map/#developers)

 [Suporte](https://wordpress.org/support/plugin/cf7-google-map/)

## Descrição

This plugin enables the insertion of google maps into contact form 7 as an input
field, functionality available with this plugin include

 * **Multi-map per form** – the zoom and default location to be configured in the
   form edit page itself, thus different maps/forms can have different default map
   zoom levels and pin location. The front end form displays the configured map 
   and registers the location change of the pin which can be included in the email
   notification.
 * **Compatible with Post My CF7 Form** – play nice with the [Post My CF7 Form](https://wordpress.org/plugins/post-my-contact-form-7/)
   plugin
 * **Address lookup search bar** – a search field is available to lookup addresses,
   if a user changes manually the first line of the (optional) address field, the
   reverse-geocode is frozen. This allows for address corrections.
 * **Reverse Geocode** – an optional set of address fields can be enabled from the
   cf7 tag to display reverse-geocode text address
 * **Totally customisable** – a set of filters are provided to control all configuration
   parameters on each map.
 * **Popup compatible** – this plugin allows users to control defferred map initialisation
   on popups.
 * **Customise map actions** – the plugin exposes the map object with events (on
   initialisation/updates), allowing users to add additional features to their maps.
   The plugin makes use of [JQuery Google Maps (gmap3) plugin](https://gmap3.net/),
   and exposes both the Gmap3 as well as the Google map objects.

Google map is disabled for [Airplane Mode plugin](https://github.com/norcross/airplane-mode/releases)
activation to allow you to develop without an Internet connection.

Plays nice with repetitive fields constructs from the [Smart Grid-Layout extension for CF7](https://wordpress.org/plugins/cf7-grid-layout/)
plugin.

#### Checkout our other CF7 plugin extensions

 * [CF7 Polylang Module](https://wordpress.org/plugins/cf7-polylang/) – this plugin
   allows you to create forms in different languages for a multi-language website.
   The plugin requires the [Polylang](https://wordpress.org/plugins/polylang/) plugin
   to be installed in order to manage translations.
 * [Smart Grid-layout Extension for CF7 ](https://wordpress.org/plugins/cf7-grid-layout/)–
   this plugin fixes amny shortcomings of the CF7 plugin, most importantly it allows
   you to build a grid-layout (multi-row/multi-column) responsive form among many
   other useful functionality.
 * [Post My CF7 Form](https://wordpress.org/plugins/post-my-contact-form-7/) – this
   plugin allows you to save you cf7 form submissions to a custom post, map your
   fields to meta fields or taxonomy. It also allows you to pre-fill fields before
   your form is displayed.

### Final slide-form data

## Ecrãs

 * [[
 * Save your Google API key in the settings, else your map will not function
 * [[
 * Insert a Google Map tag into your cf7 form
 * [[
 * You can set the default parameters for your map, this will be used to display
   the default zoom level as well as pin location in the form
 * [[
 * The map is by default set to take up 100% width in the form, and a height of 
   120px. Override this in your child css stylesheet to size up your map.
 * [[
 * Optional address fields get auto-filled by the reverse-geocode lookup. The map
   as contains a search field to locate an address (you will need to enable the 
   appropriate Google APIs).

## Instalação

 1. Unpack `cf7-google-map.zip` to the `/wp-content/plugins/` directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. Get a [Google Map API key](https://developers.google.com/maps/documentation/javascript/get-api-key#key)
    and insert it in the plugin Settings->CF7 Google Map page. Make sure you enable
    the required APIs (see faq #).
 4. Create a new form in the CF7 editor. Select the [Google Map] tag, and configure
    your map.
 5. The plugin creates 2 email tags for submitted location, the `lat-<field-name' and`
    lng-`. This allows you to include multiple maps in a single form if needed.

## Perguntas frequentes

### 1. My map is darkened , or ‘negative’ and is watermarked with the text “for development purposes only”.

This is an issue with your Google API key not having the APIs enabled. You need 
to ensure several things. If you have enabled both Geocode API option and Google
Places in the plugin settings, then you need to make sure those APIs are enabled
on your key. To enalbe the APIs, log into your Google [dashboard](https://console.cloud.google.com/projectselector/home/dashboard),
select your project (or create a new one) and navigate to the **APIs & Services**
section. You can then enable/add APIs and search for the Geocoding API and the Google
Places API and enable the ones you need. If you are still facing this issue, check
Google’s other steps in this [FAQ](https://developers.google.com/maps/faq#api-key-billing-errors)
on this issue.

### 2. I am based in Brazil/Canada/India and my map is not working.

If you are facing the issue described in faq#1 above, and you have enabled all the
required APIs but your map is still not functioning, then likely the issue you are
facing is related to billing. Request from Brazil/Canada/India need to have API 
Keys for projects that are linked to a billing-enabled account. See this [issue](https://developers.google.com/maps/faq#api-key-billing-errors)
on Google’s faq.

### 3. How do I retrieve a lat/lng value when my form is submitted?

The forms submits a `$_POST['lat-<map-field-name>']` and a `$_POST['lng-<map-field-
name>']` which you can access by hooking the cf7 action hook `wpcf7_mail_sent` as
well as `wpcf7_mail_failed` just in case the mail failed but the form still submitted
successfully,

    ```
    add_action('wpcf7_mail_sent', 'get_lat_lng_values');
    add_action('wpcf7_mail_failed', 'get_lat_lng_values');
    function get_lat_lng_values(){
      //assuming your map field is named your-location,
      if(!isset($_POST['lat-your-location'])) return;
      $lat = $_POST['lat-your-location'];
      $lng = $_POST['lng-your-location'];
    }
    ```

### 4. How can I display a link to a google map location in the notification mail?

Assuming you created a map field called ‘your-location’, the mail tag [your-location]`,
will by default display the ‘lat,lng’ coordinates of the location your user selected.

You can build a google map link such as,

    ```
    <a href="http://maps.google.com/maps?q=[lat-your-location],[lng-your-location]&ll=[lat-your-location],[lng-your-location]&z=8">Location map</a>
    ```

this will create a link to a map centered on the coordinates with a location pin
at the coordinates. You can also change the zoom `z` value to the desied level.

### 5. How to setup custom address fields ?

In some countries (Japan, Germany, Spain…) the order of address fields change and
so it may be desirable to design a form with address fields in the order in which
the user would naturally write a postal address. For this purpose, v1.4 of this 
plugin introduces custom field functionality. It is up to your to create/add additional
text fields in your form that will be populated using javascript events.

Here is an example of a form with a map tag and additional address fields, along
with some custom javascript to ensure your fields are correctly populated when a
user interacts with the map.

    ```
      <p>[map your-location custom_address "zoom:7;clat:12.044014700107471;clng:79.32083256126546;lat:12.007089;lng:79.810600"]
     <p id="line">Your address (street) [text your-address-line]</p>
     <p id="city">Your address (city) [text your-address-city]</p>
     <p id="pincode">Your address (pin) [text your-address-pin]</p>
     [submit "Send"]
     <script type="text/javascript">
       (function($){
         $(document).ready( function(){
           $('.cf7-google-map-container.your-location').on('update.cf7-google-map', function(e){
             //the event has 5 address fields, e.address.line, e.address.city, e.address.pin, e.address.state, e.address.country.
             //some fields may be empty.
             $('p#line input').val(e.address.line);
             $('p#city input').val(e.address.city);
             $('p#pincode input').val(e.address.pin);
           })
         })
       })(jQuery)
     </script>
    ```

If you are using the address mail tag in your mail notification, and want your users
to modify the address displayed through your custom fields, then it is important
that you fire a similar event as the one above on the map container. This will notify
the plugin to update the complete address field which will be used to populate the
mail tag,

    ```
    $('p#line input, p#city input, p#pincode input').on('change', function(){
      var event = $.Event("update.cf7-google-map", {
          'address': {
            'line': '', /*insert the first line here*/
            'city': '', /*insert the city here*/
            'state': '',/*insert the state here*/
            'country': ''/*insert the country here*/
          },bubbles: true,cancelable: true});
      /*NOTE: it is not important how many details you enter, only the values will be submitted in the same order.*/
      $('.cf7-google-map-container').trigger(event);
    }
    ```

### 6. How can I customise the display of the address in the notification mail?

if you include the address mail tag [address-] into the notification mail body, 
it will be by default displayed with each field on a new line. If you need to change
this, hook the following filter,

    ```
    add_filter('cf7_google_map_mailtag_address', 'change_address_format',10,3);
    function change_address_format($formatted_address, $address, $field){
      if('my-location'==$field){ //make sure you're handling the right form field.
        $formatted_address=implode(', ',$address);
      }
      return $formatted_address;
    }
    ```

### 7. Can I change the default map settings ?

yes, you can using the following hook you can filter the map type (set to ROADMAP
by default),

    ```
    add_filter('cf7_google_map_default_type', 'change_map_type', 10,2);
    function change_map_type($type, $field){
      //type must be either ROADMAP/SATELLITE/TERRAIN/HYBRID.
      if('your-location' ==$field) $type = 'SATELLITE';
      return $type;
    }
    ```

you can disable/enable map controls,

    ```
    add_filter('cf7_google_map_settings', 'use_custom_map_settings',10,2);
    function use_custom_map_icon($settings, $field_name){
      if( 'your-location' == $field_name ){
        $settings['mapTypeControl']= false; //hide (true by default).
        $settings['navigationControl']= false; //hide (true by default).
        $settings['streetViewControl']= false; //hide (true by default).
        $settings['zoomControl']=false; //hide (false by default).
        $settings['rotateControl']=true; //show (false by default).
        $settings['fullscreenControl']=true; //show (false by default).
        $settings['rotateControl']= true; //show (false by default).
        $settings['zoom']= 12; //set by default to the value initialised at the time of creating the form tag.
        $settings['center'] = array('11.936825', '79.834278'); //set by default to the value initialised at the time of creating the form tag.

      }
      return $settings;
    }
    ```

you can filter the map marker’s settings,

    ```
    add_filter('cf7_google_map_marker_settings', 'use_custom_marker_settings',10,2);
    function use_custom_marker_settings($settings, $field_name){
      if( 'your-location' == $field_name ){
        $settings['icon'] = ... //set your image url here.
        $settings['draggable'] = false; //true by default.
        $settings['position'] = array('11.936825', '79.834278'); //set by default to the value initialised at the time of creating the form tag.

      }
      return $settings;
    }
    ```

### 9. Can I translate my address field labels ?

If you are using the built-in address fields provided by the plugin, you can change
the labels of the fields usig the following hooks,

    ```
    add_filter('cf7_google_map_address_label', 'change_address_label',10,2)
    function change_address_label($label, $field_name){
      if('your-location'==$field_name){
        $label = 'Adresse';
      }
      return $label;
    }
    add_filter('cf7_google_map_city_label', 'change_city_label',10,2)
    function change_city_label($label, $field_name){
      if('your-location'==$field_name){
        $label = 'Ville';
      }
      return $label;
    }
    add_filter('cf7_google_map_pincode_label', 'change_pincode_label',10,2)
    function change_pincode_label($label, $field_name){
      if('your-location'==$field_name){
        $label = 'Code postal';
      }
      return $label;
    }
    add_filter('cf7_google_map_country_label', 'change_country_label',10,2)
    function change_country_label($label, $field_name){
      if('your-location'==$field_name){
        $label = 'Pays'
      }
      return $label;
    }
    ```

### 10. Is it possible to interact with the Map and bind event changes ?

As of v1.6 it is possible to interact with the gmap3 library object once initialised,
each time a user drags the marker, or if you enable geocode API, to bind address
updates when a new search result is selected.

You can get example snipet javascript code examples if you use the [Smart Grid extension](https://wordpress.org/plugins/cf7-grid-layout/)
which has a grid UI editor with code shortcuts to save time in development (see 
[Screenshot](https://wordpress.org/plugins/cf7-grid-layout/#screenshots) #17 on 
the plugin’s page), else you can bind the following events,

    ```
    $('.cf7-google-map-container').on('init.cf7-google-map drag.cf7-google-map update.cf7-google-map', function(e){
      //event e contains various object references. e.gm3 for the gmap3 object, e.marker, e.gmap are the google marker and map respectively.
      //so to set a circle around the marker...
      e.gm3.circle({
        center: [e.marker.position.lat(),e.marker.position.lng()],
        radius : 750,
        fillColor : '#b0b14eb1',
        strokeColor : '#fff100ff'
      });

    });
    ```

### 11. What are the JavaScript Events exposed ?

As of v1.8 in addition of jQuery Event objects being triggered, plain vanilla JavaScript
events are also fired,
 All the events are fired on the map containter `.cf7-google-
map-container`

**jQuery events:**

    ```
    init.cf7-google-map
    drag.cf7-google-map
    update.cf7-google-map
    ```

the init event is fired on initialisation of a map and exposes

 * `gm3` gmap3 object,
 * `gmap` Google map object,
 * `marker` the Google marker object that has been updated.
 * `settings.center` the coodrinates of the center of the map as an array with [
   lat,lng]
 * `settings.zoom` the zoom level of the map.
 * `settings.type` the map type used,
 * `settings.marker` the current marker’s coordiates as an array [lat,lng]

the drag event is fired when a marker is dragged on the map, it exposes,

 * `settings.center` the coodrinates of the center of the map as an array with [
   lat,lng]
 * `settings.zoom` the zoom level of the map.
 * `settings.type` the map type used,
 * `settings.marker` the current marker’s coordiates as an array [lat,lng]

the update event is fired with then the marker on the map is changed (when the search
field is used to automatically located an result), it exposes,

 * `gm3` gmap3 object,
 * `gmap` Google map object,
 * `marker` the Google marker object that has been updated.
 * `address` the address of the marker location,

**JavaScript equivalent events **

    ```
    init/cf7-google-map
    drag/cf7-google-map
    update/cf7-google-map
    ```

However note that in JavaScript events, map objects are found in the `event.detail`
property, while in the jQuery event object these are exposed directly in the root
of the event object.

### 12. How can I defer the initialisation of a map ?

To programmatically trigger a map intialisation you need to first turn off the automatic
initialisation using the filter,

    ```
    add_filter( 'cf7_google_map_initialise_on_document_ready','your_location_stop_initialise',10,2);
    /**
    * Filter initialisation on document ready event.
    * You can stop the automatic intialisation should you want to control the process on a separate popup.
    * @param Boolean $do_init weather to initialise or not, true by default.
    * @param String $field the field name being populated.
    */
    function your_location_stop_initialise($do_init, $field){
      if( 'your-location' !== $field) return $do_init; //check if this is the right map field.
      return false;
    }
    ```

on the front-end you need to fire the `initialise-cf7-gmap` event on the map container,

    ```
    $(document).ready(function(){
      //assuming your field is 'your-location'
      $('.cf7-google-map-container.your-location').trigger('initialise-cf7-gmap');
    })
    ```

## Avaliações

![](https://secure.gravatar.com/avatar/e47f1ede7d492cc5d4b81451c847906b07cc4ee84d3fdc57d84bfbe51144cd7d?
s=60&d=retro&r=g)

### 󠀁[Great developer and excellent plugin 👍🏻](https://wordpress.org/support/topic/great-developer-and-excellent-plugin-%f0%9f%91%8d%f0%9f%8f%bb/)󠁿

 [vans1994](https://profiles.wordpress.org/vans1994/) 13 Julho, 2023 1 resposta

I highly recommend this plugin to anyone looking for a reliable and effective CF7
Google map fields solution.

![](https://secure.gravatar.com/avatar/33fadaf8aef05d4f5ce5153c47ec1ecc45fa47b6bb54f6c06825ee4abfe32321?
s=60&d=retro&r=g)

### 󠀁[Amazing Plugin. Very Flexible. Excellent support](https://wordpress.org/support/topic/amazing-plugin-very-flexible-excellent-support/)󠁿

 [Vassos Hadjivassiliou](https://profiles.wordpress.org/more2think/) 31 Agosto, 
2021

This is an incredible plugin. It does what it says. What I love about it is the 
flexibility to make changes. It integrates nicely with contact form 7. Support is
excellent too. Definitely go for it.

![](https://secure.gravatar.com/avatar/33c88804667692a2fde093acba9b5298aa16b6e3e1b5889719cd35e9d148f777?
s=60&d=retro&r=g)

### 󠀁[Great plugin!](https://wordpress.org/support/topic/great-plugin-29355/)󠁿

 [dbrandt](https://profiles.wordpress.org/dbrandt/) 18 Janeiro, 2021 1 resposta

This is a very nice plugin. Support is fast and good. Very happy with the result.

![](https://secure.gravatar.com/avatar/40d25f808d6086add06c073b3a8fbff4e3b8353e3dd2d101a388a5886b270f34?
s=60&d=retro&r=g)

### 󠀁[Nice plugin](https://wordpress.org/support/topic/nice-plugin-3820/)󠁿

 [rodrigomolina](https://profiles.wordpress.org/rodrigomolina/) 16 Agosto, 2020 
1 resposta

It does exactly what it claims. Also the support is super fast!

![](https://secure.gravatar.com/avatar/fdc3deae12af067db5e3f26209a797445076d07fbbd7ea0fa86a676e299b84a0?
s=60&d=retro&r=g)

### 󠀁[Exactly What I Needed for my CF7 Intsall](https://wordpress.org/support/topic/exactly-what-i-needed-for-my-cf7-intsall/)󠁿

 [themontersens](https://profiles.wordpress.org/themontersens/) 29 Junho, 2020 1
resposta

Thank you for this plugin. Looking for a gmap plugin that worked with my theme and
CF7 and this fit the bill. While I’m irked that google needs a billing information
for access to a maps api key (although they give a “credit” every month of $200)
and I’m never going to max out that charge, the plugin itself does exactly what 
I need (search for a location and drop a marker on the that spot, and then retrieve
the coordinates for CF7 delivery) exactly and without fluff. The plugin owner responded
to a bug request within hours with a fix and a deployment of that update. That should
get another 5 stars.

![](https://secure.gravatar.com/avatar/bcba8bcad1b821a7be62f153f3ebc64a6272729dac39c631fb559225656423eb?
s=60&d=retro&r=g)

### 󠀁[Fantastic plugin](https://wordpress.org/support/topic/fantastic-plugin-1360/)󠁿

 [tuomi90](https://profiles.wordpress.org/tuomi90/) 18 Junho, 2020 1 resposta

Easy and nice plugin

 [ Ler todas as 15 avaliações ](https://wordpress.org/support/plugin/cf7-google-map/reviews/)

## Contribuidores e programadores

“Contact Form 7 extension for Google Map fields” é software de código aberto. As
seguintes pessoas contribuíram para este plugin:

Contribuidores

 *   [ Aurovrata Venet ](https://profiles.wordpress.org/aurovrata/)

“Contact Form 7 extension for Google Map fields” foi traduzido para 2 locales. Obrigado
aos [tradutores](https://translate.wordpress.org/projects/wp-plugins/cf7-google-map/contributors)
pelas suas contribuições.

[Traduza o “Contact Form 7 extension for Google Map fields” para o seu idioma.](https://translate.wordpress.org/projects/wp-plugins/cf7-google-map)

### Interessado no desenvolvimento?

[Consulte o código](https://plugins.trac.wordpress.org/browser/cf7-google-map/),
consulte o [repositório SVN](https://plugins.svn.wordpress.org/cf7-google-map/),
ou subscreva o [registo de alterações](https://plugins.trac.wordpress.org/log/cf7-google-map/)
por [RSS](https://plugins.trac.wordpress.org/log/cf7-google-map/?limit=100&mode=stop_on_copy&format=rss).

## Registo de alterações

#### 1.9.0

 * minified js/css for live sites.
 * fixed issues with event for repetitive maps.

#### 1.8.4

 * fix repetitive fields.
 * fix code security.

#### 1.8.3

 * fix admin notice options tracking.

#### 1.8.2

 * fix multi-map init search bar.
 * fix search bar resize.

#### 1.8.1

 * fix geocoder name clash.

#### 1.8.0

 * fixed jquery 3 issues with search bar.
 * added filter ‘cf7_google_map_initialise_on_document_ready’
 * enable event-based control of map initialisation for popup forms.

#### 1.7.3

 * fix multi-map fields/multi-forms in single page/Post My CF7 Form compatibility.
 * enable repetitive map fields in Smart Grid.

#### 1.7.2

 * fix address fields.

#### 1.7.1

 * fix marker bug in js udpate event.

#### 1.7.0

 * fix map required display message.
 * enable multiple map fields in a page/form.

#### 1.6.0

 * expose js map objects on the client side with events.
 * better integration with CF7 Smart Grid UI editor plugin.
    =1.5.0=
 * move main google js script into separate file.
 * upgrade js to ES6.
 * add cf7_google_map_marker_settings filter.
 * add cf7_google_map_settings filter.
    =1.4.5=
 * fix search.
 * fix settings links.
 * fix search button position.
    =1.4.4=
 * fix ROADMAP filter.
    =1.4.3=
 * fix HTML map field markup.
 * updated settings to improve API key setup.
 * fix address field fatal error.
 * fix mail tag bugs.
    =1.4.2=
 * setup submitted address field to cf7 posted data.
    =1.4.1=
 * fix boolean flag bug on maps with not address fields.
    =1.4.0=
 * add custom address fields.
 * capture map centre on zoom change in admin page.
 * check on admin page if post_type is set.
 * added FAQ to retrieve lat/lng.
 * added FAQ to populate custom address fields.
    =1.3.2=
 * fix search box results bug.
    =1.3.1=
 * url scheme bug fix.
    =1.3.0=
 * settings for Geocoding API and Google Places API.
 * faq updated with more info.
 * searchbox places marker are now draggable.
 * searchbox places marker delete default marker location.
    =1.2.6=
 * fix optional address field bug.
 * fix map not being displayed for std cf7 forms.
    =1.2.5=
 * fix WP_GURUS_DEBUG constant warning.
    =1.2.4=
 * airplane-mode plugin compatible.
    =1.2.3=
 * bug fix: validation error message
    =1.2.2=
 * bug fix: map centre on drag.
    =1.2.1=
 * bug fix for loading existing draft form maps.

#### 1.2

 * enable loading map coordinates in saved draft forms.
 * map inputs not cleared when draft form saved using Post My CF7 Form plugin.
 * bug fix saving map details using Post My CF7 Form plugin.

#### 1.1

 * added search field
 * added optional address fields with reverse-geocoding

#### 1.0

 * first version, only in english locale

## Metadados

 *  Versão **1.9.0**
 *  Última actualização **Há 3 anos**
 *  Instalações activas **600+**
 *  Versão do WordPress ** 5.6 ou superior **
 *  Testado até **6.2.9**
 *  Versão do PHP ** 7.4 ou superior **
 *  Idiomas
 * [English (US)](https://wordpress.org/plugins/cf7-google-map/), [Spanish (Chile)](https://cl.wordpress.org/plugins/cf7-google-map/)
   e [Spanish (Spain)](https://es.wordpress.org/plugins/cf7-google-map/).
 *  [Traduza para o seu idioma](https://translate.wordpress.org/projects/wp-plugins/cf7-google-map)
 * Etiquetas
 * [contact form 7](https://pt.wordpress.org/plugins/tags/contact-form-7/)[contact form 7 extension](https://pt.wordpress.org/plugins/tags/contact-form-7-extension/)
   [contact form 7 module](https://pt.wordpress.org/plugins/tags/contact-form-7-module/)
   [google map](https://pt.wordpress.org/plugins/tags/google-map/)[maps](https://pt.wordpress.org/plugins/tags/maps/)
 *  [Visualização avançada](https://pt.wordpress.org/plugins/cf7-google-map/advanced/)

## Classificações

 4.7 out of 5 stars.

 *  [  13 5-star reviews     ](https://wordpress.org/support/plugin/cf7-google-map/reviews/?filter=5)
 *  [  1 4-star review     ](https://wordpress.org/support/plugin/cf7-google-map/reviews/?filter=4)
 *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/cf7-google-map/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/cf7-google-map/reviews/?filter=2)
 *  [  1 1-star review     ](https://wordpress.org/support/plugin/cf7-google-map/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/cf7-google-map/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/cf7-google-map/reviews/)

## Contribuidores

 *   [ Aurovrata Venet ](https://profiles.wordpress.org/aurovrata/)

## Suporte

Tem algo a dizer? Precisa de ajuda?

 [Ver fórum de suporte](https://wordpress.org/support/plugin/cf7-google-map/)

## Doar

Gostaria de apoiar o desenvolvimento deste plugin?

 [ Fazer donativo para o plugin ](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=UZ9CQN6KYBMQ8)