Hi,
the pronamic google map doesn’t work correctly in tabs or accordions!? On page loading and selecting the tab which is placed the map – the map is empty. If i change the browser window size only a little bit. Then the map is showing.
Thanks & Regards
other Google Map Plugin has a fix like that:
Are you trying to display the map in Tabs or Accordions?
If you are trying to display the map in a tab or an accordion, youāll need to modify the code to suit this (We have tried to put a universal check in for this but depending on your theme or plugin, this may not work as it should).
Please open wp-google-maps-pro/js/core.js and search for the following piece of code:
jQuery(‘body’).on(‘tabsactivate’, function(event, ui) {
for(var entry in wpgmaps_localize) {
InitMap(wpgmaps_localize[entry][‘id’],’all’,false);
}
});
Directly below that, add the following:
jQuery(‘body’).on(‘click’, ‘.the_class_name_of_your_tab_or_accordion’, function(event, ui) {
for(var entry in wpgmaps_localize) {
InitMap(wpgmaps_localize[entry][‘id’],’all’,false);
}
});
Replace the .the_class_name_of_your_tab_or_accordion with the relevant class name of the element.
The documentation is dire. How the hell do I add a map to my website? On the wordpress plugin page I get a bunch of shortcodes but how do I actually tell it what to map??
We need decent documentation for the clueless here. Otherwise this plugin is useless.
Elisa, did you enable Google Maps support for your desired post type? In your WordPress dashboard, see the Google Maps Ā» Settings menu item. Once enabled for a post type, there will be an additional meta box to assign a location to a post. The `[googlemaps]` shortcodes use the location of that post and the `[googlemapsmashup]` allow you to make a ‘mashup’, which adds markers for the locations of a selection of posts to the map. For further theme integration, please also see the examples at https://github.com/pronamic/wp-pronamic-google-maps/tree/master/examples
The sensor parameter has already been removed from the development version of the plugin, but unfortunately we haven’t released an update yet. In the next plugin update, this warning will be resolved.
Please note that ā except for the console warning ā there aren’t any differences in the plugin based on this `sensor` parameter. Google first required the parameter, now they don’t. They chose to inform users of this change through a console warning, but it’s not really an “error” if the parameter is still send.
Morten
Hi. Any idea how to use the [google-maps] shortcode in a builder, like Beaver Builder? The map is displayed at the top of the site (right after entry-content tag) no matter where in the builder i place the shortcode.
We haven’t tested specifically with Beaver Builder, but it should work just like any other shortcode. You could try passing the echo=”false” argument explicitly in the shortcode.
Tom
Recently, the Google Maps display started to show āFor development purposes onlyā as an overlay and a āThis page canāt load Google Maps correctlyā error message. This issue seems to be happening because of a recent change with embedded Google Maps requiring an API key to work properly.
I’m not sure if this is the specific issue or if there’s another issue, but is there a way to resolve this, or do we just need to get an API key from Google?
Please see the Google Maps Platform documentation at https://cloud.google.com/maps-platform/user-guide/. You need an API key to continue embedding Google Maps. The API key should then be set in the WordPress Google Maps plugin settings.
Alex
Hi.
Is there still support for this lovely plugin?
The Geocoder doesn’t work anymore š
If i enter a city and click “Geocode” for localisation nothing happend …
Geocoding is still working. Did you enter a Google Maps API key in the plugin settings?
Remco
Hi, this plugin doesn’t seem to work on my WP website (WP version 5.0.2, theme Nutrella). I have entered a Google Maps API key in the plugin settings. ‘Geocoding’ doesn’t work. What could I be doing wrong?
Do you have the Geocoding API enabled for your API key?
Lev
Is there a way to integrate this plugin in to a gravity form.
It would be great tool as a customer opens a form and type address its get pointed on the map.
Hi,
you say on this page the plugin is updated in oct. 2019, while the WP repository page says the last update was 3 years ago. Is this project still under “active” development?
What happens to the plugin if Google decides to release a new Google maps API version?
I really like your plugin’s concept and would like to use it for a new project.
The plugin is not under active development, but still works great with the latest WordPress version. In case the API gets updated without backwards compatibility, we might update the plugin. But such changes are not expected anytime soon.
Roman
Hi.
I was given the site http://bialoniebieska.pl for editing where your plugin was used. I create new screens, but they mark the same place on the map. I cannot understand where the latitude and longitude of these coordinates are registered. They are not in the posts.
Did you enable Pronamic Google Maps for your post type in the plugin settings (WordPress admin Ā» Google Maps Ā» Settings)? If so, there should be a Google Maps meta box available when editing a post of that post type, to enter address details / coordinates for the post.
23 thoughts
[…] Pronamic Google Maps plugin just reached the 100.000+ downloads on WordPress.org. With this goal we just launched version 2.2.8 […]
Hi
The mashup map function doesn’t work with WP4.4 š
[googlemaps width=100% height=350 new_design=true]
Do you will fix it?
Hi,
the pronamic google map doesn’t work correctly in tabs or accordions!? On page loading and selecting the tab which is placed the map – the map is empty. If i change the browser window size only a little bit. Then the map is showing.
Thanks & Regards
other Google Map Plugin has a fix like that:
Are you trying to display the map in Tabs or Accordions?
If you are trying to display the map in a tab or an accordion, youāll need to modify the code to suit this (We have tried to put a universal check in for this but depending on your theme or plugin, this may not work as it should).
Please open wp-google-maps-pro/js/core.js and search for the following piece of code:
jQuery(‘body’).on(‘tabsactivate’, function(event, ui) {
for(var entry in wpgmaps_localize) {
InitMap(wpgmaps_localize[entry][‘id’],’all’,false);
}
});
Directly below that, add the following:
jQuery(‘body’).on(‘click’, ‘.the_class_name_of_your_tab_or_accordion’, function(event, ui) {
for(var entry in wpgmaps_localize) {
InitMap(wpgmaps_localize[entry][‘id’],’all’,false);
}
});
Replace the .the_class_name_of_your_tab_or_accordion with the relevant class name of the element.
This issue with the Fusion tabs of the Avada theme has been resolved through a support ticket by adding the following Javascript to the page:
[…] Pronamic Google Maps plugin just reached the 100.000+ downloads on WordPress.org. With this goal we just launched version 2.2.8 […]
HOW DO YOU USE THIS PLUGIN???
The documentation is dire. How the hell do I add a map to my website? On the wordpress plugin page I get a bunch of shortcodes but how do I actually tell it what to map??
We need decent documentation for the clueless here. Otherwise this plugin is useless.
Elisa, did you enable Google Maps support for your desired post type? In your WordPress dashboard, see the Google Maps Ā» Settings menu item. Once enabled for a post type, there will be an additional meta box to assign a location to a post. The `[googlemaps]` shortcodes use the location of that post and the `[googlemapsmashup]` allow you to make a ‘mashup’, which adds markers for the locations of a selection of posts to the map. For further theme integration, please also see the examples at https://github.com/pronamic/wp-pronamic-google-maps/tree/master/examples
Any idea on how to solve this:
Google Maps API warning: SensorNotRequired https://developers.google.com/maps/documentation/javascript/error-messages#sensor-not-required
Thanks a lot.
The sensor parameter has already been removed from the development version of the plugin, but unfortunately we haven’t released an update yet. In the next plugin update, this warning will be resolved.
To make the changes yourself in the `/wp-content/plugins/pronamic-google-maps/` directory through FTP, please see https://github.com/pronamic/wp-pronamic-google-maps/commit/7a5c480b773548ce252a1dcd87abdb113477b3db for the specific changes.
Please note that ā except for the console warning ā there aren’t any differences in the plugin based on this `sensor` parameter. Google first required the parameter, now they don’t. They chose to inform users of this change through a console warning, but it’s not really an “error” if the parameter is still send.
Hi. Any idea how to use the [google-maps] shortcode in a builder, like Beaver Builder? The map is displayed at the top of the site (right after entry-content tag) no matter where in the builder i place the shortcode.
Thanks.
We haven’t tested specifically with Beaver Builder, but it should work just like any other shortcode. You could try passing the echo=”false” argument explicitly in the shortcode.
Recently, the Google Maps display started to show āFor development purposes onlyā as an overlay and a āThis page canāt load Google Maps correctlyā error message. This issue seems to be happening because of a recent change with embedded Google Maps requiring an API key to work properly.
I’m not sure if this is the specific issue or if there’s another issue, but is there a way to resolve this, or do we just need to get an API key from Google?
Please see the Google Maps Platform documentation at https://cloud.google.com/maps-platform/user-guide/. You need an API key to continue embedding Google Maps. The API key should then be set in the WordPress Google Maps plugin settings.
Hi.
Is there still support for this lovely plugin?
The Geocoder doesn’t work anymore š
If i enter a city and click “Geocode” for localisation nothing happend …
Geocoding is still working. Did you enter a Google Maps API key in the plugin settings?
Hi, this plugin doesn’t seem to work on my WP website (WP version 5.0.2, theme Nutrella). I have entered a Google Maps API key in the plugin settings. ‘Geocoding’ doesn’t work. What could I be doing wrong?
Do you have the Geocoding API enabled for your API key?
Is there a way to integrate this plugin in to a gravity form.
It would be great tool as a customer opens a form and type address its get pointed on the map.
Thanx
Unfortunately, there’s no such integration.
Hi,
you say on this page the plugin is updated in oct. 2019, while the WP repository page says the last update was 3 years ago. Is this project still under “active” development?
What happens to the plugin if Google decides to release a new Google maps API version?
I really like your plugin’s concept and would like to use it for a new project.
The plugin is not under active development, but still works great with the latest WordPress version. In case the API gets updated without backwards compatibility, we might update the plugin. But such changes are not expected anytime soon.
Hi.
I was given the site http://bialoniebieska.pl for editing where your plugin was used. I create new screens, but they mark the same place on the map. I cannot understand where the latitude and longitude of these coordinates are registered. They are not in the posts.
Did you enable Pronamic Google Maps for your post type in the plugin settings (WordPress admin Ā» Google Maps Ā» Settings)? If so, there should be a Google Maps meta box available when editing a post of that post type, to enter address details / coordinates for the post.