Since v4.29 Maps Marker Pro also support Stadia Maps geocoding.
For current pricing, please see https://stadiamaps.com/pricing/ (with a “Free” account, 200.000 credits/month are included – April 2024)
Terms of Services: https://stadiamaps.com/terms-of-service/
In order to enable Stadia maps support, you have to do the following steps:
Alternatively you can also register an API key in step 4 and add this API key in step 5 (and also selecting “API key” as “Authentification configuration”).
That´s it. Afterwards you are able to use the following Stadia basemaps geocoding:
]]>Since v4.27 Maps Marker Pro also support Stadia maps as basemaps (which can be used e.g. as replacement for discontinued Stamen Maps)
For current pricing, please see https://stadiamaps.com/pricing/ (with a “Free” account, 200.000 credits/month are included – October 2023)
Terms of Services: https://stadiamaps.com/terms-of-service/
In order to enable Stadia maps support, you have to do the following steps:
That´s it. Afterwards you are able to use the following Stadia basemaps for your maps:
]]>Since v4.23 we support Lima Labs tiles which can be configured as optional layer within Maps Marker Pro.
Lima Labs renders all tiles at a tile size of 512 and a scale factor of 2.0. This gives you crisp high resolution tiles. Check out their demo map at https://maps.lima-labs.com/ol.html.
They do NOT use AWS, Cloudflare or Fastly and provide diversity in the event your current provider’s CDN has issues. They provide anglicized place naming in addition to the local naming and operate a global network.
Lima Labs tiles are FREE for any user needing < 20.000.000 tiles yearly (that is a LOT of tiles). Additional tiles can be purchased in blocks of 5,000,000 for $10 and never expire.
Maps Marker Pro users get additional 5.000.000 tiles for free by signing up for an API key here.
The terms of services can be found at https://maps.lima-labs.com/index.php/aup/
You are now able to use Lima Lab tiles as optional layer for maps:
If your map does not get loaded and you see an error like the one above (error details are only visible for admins), this can have the following reasons:
If you are using Google Geocoding and want to restrict the API key to your server only (which is recommended), you need to add the IP of the server where Maps Marker Pro is installed to the Google Cloud Console (see tutorial, section “Optional steps (recommended)”).
If you do not know the IP of your server, you can
Algolia Places sunset its free geocoding service – also used in Maps Marker Pro – on May 31st 2022. This decision was made back in 2020 by Algolia – for more details please check their product blog.
As Algolia Places was the default (keyless) geocoding provider in Maps Marker Pro, you now need to switch to another (keybased) geocoding provider, if you want to continue using the geocoding feature in Maps Marker Pro.
Maps Marker Pro is the only WordPress mapping plugin with an integrated geocoding framework, which allows you to choose from different geocoding provider – selecting the one that best fits your needs:
Name + setup tutorial | API key needed? | Rate limits |
---|---|---|
LocationIQ Geocoding (Default for new installations) | No | Keyless geocoding with 1,000 requests/day/IP, 2 requests/second; with personalized free API key up to 5.000 requests/day/IP - larger plans available on demand - details here |
TomTom Geocoding | Yes | 2.500 requests/day, 5 requests/minute; details about larger plans at https://developer.tomtom.com/store/maps-api |
Google Geocoding | Yes | minimum billing per month applies (starting from 11th June 2018 - click here for details) |
MapQuest Geocoding | Yes | 15.000 transactions/month and a maximum of 10 requests/second; higher quotas are available |
Stadia Maps Geocoding | Yes | 200.000 credits / month, details at Stadia Maps Pricing |
Algolia Places (discontinued) | No | n/a |
If you experience any issues with activating an alternative geocoding provider in Maps Marker Pro, please check out our knowledge base or open a support ticket.
]]>Mapbox maps require the use of Mapsbox’s own mapping engine, which conflicts with the mapping engine that our plugin is based on (Leaflet). On top of that, the new Mapbox maps are vector maps, whereas Maps Marker Pro uses raster maps. We therefore don’t have any plans to support the new Mapbox Studio maps at this time. You can continue to use the classic styles for as long as Mapbox provides them, even in Version 4, by adding them as a custom layer.
]]>Since v4.14 it is possible to add links outside the map which highlight a specific marker.
Example link: <a href="#" class="mmp-highlight" data-marker="1">Link</a>
Available options:
data-marker="id"
The marker to be highlighteddata-map="id"
Target a map with a specific ID only. Useful when multiple maps are on the same pagedata-scroll="true|false"
Whether to scroll the map into view. Defaults to truedata-open="true|false"
Whether to open the popup. Defaults to trueTriggers when a map is saved (created or updated)
Version | Description |
---|---|
4.12 | Introduced |
Triggers when a map is created
Version | Description |
---|---|
4.12 | Introduced |
Triggers when a map is updated
Version | Description |
---|---|
4.12 | Introduced |
Triggers when a map is deleted
Version | Description |
---|---|
4.26 | Introduced |
Triggers when a marker is saved (created or updated)
Version | Description |
---|---|
4.12 | Introduced |
Triggers when a marker is created
Version | Description |
---|---|
4.12 | Introduced |
Triggers when a marker is updated
Version | Description |
---|---|
4.12 | Introduced |
Triggers when a marker is deleted
Version | Description |
---|---|
4.26 | Introduced |
Filters the map settings
Version | Description |
---|---|
4.6 | Introduced |
Add a prefix to the map name
add_filter('mmp_map_settings', 'mmp_add_map_name_prefix'); function mmp_add_map_name_prefix($settings) { $settings['name'] = 'This map is called: ' . $settings['name']; return $settings; }
Filters the map settings for a specific map
Version | Description |
---|---|
4.6 | Introduced |
Turn the name for the map with ID 1 into a link
add_filter('mmp_map_1_settings', 'mmp_add_link_to_map_1_name'); function mmp_add_link_to_map_1_name($settings) { $settings['name'] = '<a href="https://www.example.com">' . $settings['name'] . '</a>'; return $settings; }
Filters the map markers
Version | Description |
---|---|
4.11 | Introduced |
Hide the edit links for logged-in users
add_filter('mmp_map_markers', 'mmp_hide_marker_edit_links'); function mmp_hide_marker_edit_links($markers) { foreach ($markers as $key => $marker) { $markers[$key]['edit'] = false; } return $markers; }
Filters the map markers for a specific map
Version | Description |
---|---|
4.11 | Introduced |
Remove popups on the map with ID 1
add_filter('mmp_map_1_markers', 'mmp_remove_popups_on_map_1'); function mmp_remove_popups_on_map_1($markers) { foreach ($markers as $key => $marker) { $markers[$key]['popup'] = false; } return $markers; }
Filters the popup content
Version | Description |
---|---|
4.0 | Introduced |
4.18 | $marker parameter added |
Replace placeholders in format {{placeholder}}
with dynamic content
add_filter('mmp_popup', 'mmp_replace_popup_placeholders'); function mmp_replace_popup_placeholders($popup) { $popup = str_replace('{{weekday}}', date('l'), $popup); $popup = str_replace('{{time}}', date('g:i a'), $popup); return $popup; }
This would turn a popup with content Today is {{weekday}} and it is {{time}}
into something like Today is Monday and it is 5:16 pm
Dynamically add marker data to the popup
add_filter('mmp_popup', 'mmp_add_marker_data_to_popup', 10, 2); function mmp_add_marker_data_to_popup($popup, $marker) { $popup .= "<p>The coordinates for {$marker->name} are {$marker->lat}, {$marker->lng}</p>"; return $popup; }
This would add something like The coordinates for Central Park are 40.782222, -73.965278
to the end of the popup
Filters the marker settings (currently only used when adding or editing a marker)
Version | Description |
---|---|
4.11 | Introduced |
Filters the marker settings for a specific marker (currently only used when adding or editing a marker)
Version | Description |
---|---|
4.11 | Introduced |
Filters the map strings
Version | Description |
---|---|
4.26 | Introduced |
Change the placeholder text for the search in the list of markers
add_filter('mmp_l10n_map_strings', 'mmp_change_search_placeholder'); function mmp_change_search_placeholder($map_strings) { $map_strings['list']['search'] = 'Search stores'; return $map_strings; }
Maps Marker Pro allows you to easily perform bulk updates on markers by using the integrated import/export feature. Below you will find the documentation for these features. If anything is unclear, please open a support ticket at https://mapsmarker.com/helpdesk and we will be glad to help!
Attention: this tutorial is only valid for Maps Marker Pro version 4.9 or higher! The tutorial for version 4.0 to 4.8 can be found at https://www.mapsmarker.com/kb/user-guide/import-export-40-to-48/
By default, the import and export feature supports GeoJSON and CSV for export and import.
If you want to transfer your maps and markers from one site to another, it is recommended to use the “Backup/Restore database”-feature from the tools page instead:
By default, only administrators can use the import and export feature on the tools page. If you want other users to also use these features, please navigate to Settings / Capabilities and enable the capability “Use tools” for the required role:
Existing markers can be exported to GeoJSON or CSV format.
In order to export your markers, please navigate to “Import & Export” and select the “Export markers” first:
Select the file type you would like to export, and optionally choose which to export all markers (default) or use the “Filter mode” to export markers from selected maps only or exclude markers from selected maps.
Finish the export by clicking the “Start export” button.
You can use the import feature to bulk add or update markers.
In order to import your markers, please navigate to “Import & Export” and select the Import-tab:
Choose your import file in CSV or GeoJSON format and start the import by clicking the button “start import”. The available options will be explained below.
Additional remarks:
We integrated several checks which should prevent the import to fail. Anyway if something goes wrong, you will be shown exactly what went wrong, e.g.
If you cannot resolve the issue by yourself, please open a support ticket at https://mapsmarker.com/helpdesk and we will be glad to help!
Please see our knowledge base for related FAQ
]]>If a GPX track contains a track description, this text is automatically added to the popup text with the metainformation when clicking anywhere on the GPX track itself. Example from demo.mapsmarker.com:
If your track does not contain a description, you can manually add one by adding the tag the GPX file accordingly:
]]>Please have a look at the following external tutorial on a guideline on how to debug and fix this error: https://kinsta.com/knowledgebase/sorry-you-are-not-allowed-to-access-this-page-error-in-wordpress/
]]>Starting with v4.7 you can add GPX extensions to your gpx files in order to customize the appearance of your tracks:
You can customize the color, weight and opacity of full tracks or track segments by changing your GPX files according to the examples below.
In order to use the extensions, you also have to add the following namespace declaration to the header of the file:
<gpx [...] xmlns:mmp="https://www.mapsmarker.com/GPX/1/">
Example for customizing full track:
<trk> <extensions> <mmp:color>#f00</mmp:color> <mmp:weight>3</mmp:weight> <mmp:opacity>1</mmp:opacity> </extensions> <trkseg> <trkpt></trkpt> ... </trkseg> </trk>
Example for customizing track segments:
<trk> <trkseg> <extensions> <mmp:color>#f00</mmp:color> <mmp:weight>3</mmp:weight> <mmp:opacity>1</mmp:opacity> </extensions> <trkpt></trkpt> ... </trkseg> <trkseg> <extensions> <mmp:color>#00f</mmp:color> <mmp:weight>2</mmp:weight> <mmp:opacity>0.5</mmp:opacity> </extensions> <trkpt></trkpt> ... </trkseg> </trk>]]>
Congratulations! You succeeded in installing Maps Marker Pro and now want to create a basic map? Here is how to achieve this:
First you need to create a map, before adding a marker to it. To do so, please select “Add new map” from the menu first:
As a result you will see a new map preview using the default settings:
If you want to use the geolocation feature, you have to activate a geocoding provider first. For a comparison of available geocoding providers and activation tutorials please click here.
Start the geolocation search by entering the address into the field “Find a location” to center the map on the desired location (you can also use manaully zoom and pan the map by using your mouse directly on the map as an alternative, if geocoding is disabled for example):
The map then gets centered on that location and optionally you can also adjust basic parameters of the map like width, height or zoom level and give the map a name:
For advanced customisation, e.g. which Layer to use (like Google Maps, for which a mandatory API registration is necessary), please switch through the available tabs Layers, Controls, Markers etc. You can also tick the radio button “Show advanced settings” for advanced customisation options – for this tutorial though we will continue with basic map settings.
So as next step, finish creating this map by clicking on the Save button. The map now gets reloaded and you can easily add a marker to this map by clicking the link “Add marker”:
This will load the page “Add new marker” where the new marker is already assigned to be displayed on the newly created map with ID78. You can then either use the geolocation search again for setting the exact location of the marker or use drag and drop with your mouse. It is also advised to set a name for this marker and if you want you can customise the icon. Adding an infotext to the popup is also possible by using the editor:
Finish this step again by clicking on the “Save” button to actually create the marker.
If you switch back to the map created before and reload the page, you will see that the marker has now been added to your map:
You can now further customise this map (e.g. hiding the list of markers below the map on the tab “List”) or continue to add this map to your site. The easiest way to do so is to copy the highlighted shortcode and paste it into a post, page or widget:
If you are using the WordPress Gutenberg editor, you can also paste the shortcode as new block or use the dedicated maps block:
Gutenberg step 1 (click on the plus icon to show available blocks):
Gutenberg step 2 (select Maps Marker Pro block):
Gutenberg step 3 (select your map from the dropdown):
Either way finish by publishing your post or page or saving your widget. As a result, the map will now also be displayed on frontend:
That´s it. You´ve now successfully created your first map and added a marker. Optionally you can now further customise your map or add further markers to your map by repeating the steps above, starting from “Add new marker”. There are often several ways in achieving the desired result, this tutorial described the most basic ones.
For further tutorial on how to customise your maps, please have a look at the other content in our knowledge base – if a specific tutorial is missing or if anything is unclear for you, please open a support ticket and we will be glad to help!
]]>Maps Marker Pro offers the feature to add a control to your maps, which allow users to view their current geolocation:
By default, this control is disabled, if you want to enable it, please proceed as follows: open your map on backend and switch to the tabs “Controls” (clicking the radio button “Show advanced settings” for advanced customisation is recommended):
To enable the geolocation control, just select 1 of the 4 possible locations of the control under the section “Locate Button”.
Please be aware that this feature only works (in modern browsers) if your site is accessible via https (as the HTML5 geolocation API is used).
]]>Since v4.6 TomTom basemaps can easily be activated within Maps Marker Pro. If you want to add TomTom traffic incidents and traffic flow layers as overlay, please proceed as follows:
https://api.tomtom.com/traffic/map/4/tile/flow/absolute/{z}/{x}/{y}.png?key=add_your_tomtom_api_key_here
For TomTom traffic incidents overlay please use the following values:
Type: Overlay
Name: TomTom traffic incidents
URL: https://api.tomtom.com/traffic/map/4/tile/incidents/s3/{z}/{x}/{y}.png?key=add_your_tomtom_api_key_here
Attribution: @ 1992-2019 TomTom
Finish by clicking on Save.
Please be aware that the layers can be customised, e.g. by setting a different style. For more Information on how to Change the URL accordingly, please have a look at the traffic flow details or traffic incident details.
]]>TomTom is a leading independent location technology specialist, shaping mobility with highly accurate maps, navigation software, real-time traffic information and services. Their geocoding service can also be used within Maps Marker Pro since v4.6 after signing up for an API key.
TomTom can be used after registering a mandatory API key. The related terms of services can be found at https://developer.tomtom.com/terms-and-conditions
With their free plan, TomTom allows up to 2.500 requests/day for all of their APIs. The limit is set to 5 calls per second for non-tile based APIs and 1,000 for tile based APIs. If you’re using the TomTom Maps APIs for free and you exceed the daily free credit limit of 2,500 API transactions, you will receive an “HTTP 403 – Over the limit error”.
Larger plans are are available for higher usage limits.
You can provide latitude and longitude values as well as a radius in meters – please note that configuring these settings biases the resulted to the indicated area, the results may not be fully restricted to this specified area though.
Changes the language of the results. You can pass IETF language tags (IETF BCP 47).
If empty, the language set in WordPress will be used.
Changes the countries to search in. You can pass two letters country codes (ISO 639-1).
If empty, the entire planet will be searched.
TomTom is a leading independent location technology specialist, shaping mobility with highly accurate maps, navigation software, real-time traffic information and services. Their maps can also be used within Maps Marker Pro since v4.6 after signing up for an API key.
TomTom can be used after registering a mandatory API key. The related terms of services can be found at https://developer.tomtom.com/terms-and-conditions
With their free plan, TomTom allows up to 2.500 requests/day for all of their APIs. The limit is set to 5 calls per second for non-tile based APIs and 1,000 for tile based APIs. If you’re using the TomTom Maps APIs for free and you exceed the daily free credit limit of 2.500 API transactions, you will receive an “HTTP 403 – Over the limit” error.
Larger plans are are available for higher usage limits.
]]>By default GPX elevation charts are displayed beyond the map that the GPX track is assigned too.
You can separate the GPX elevation chart from the map though by following these steps:
<div id="chart-area" style="width:600px;height:400px;"></div>
[
mapsmarker map="1" chart="chart-area"]
As a result, the elevation chart will be loaded within this <div>.
]]>Maps Marker Pro has teamed up with LocationIQ to offer enhanced mapping and geocoding capabilities to its users.
When you install Maps Marker Pro, you automatically gain access to LocationIQ’s geocoding APIs, allowing you to perform up to 1.000 geocoding requests per day right out of the box, no additional registration needed. If you’re looking to extend this limit to 5.000 requests per day for free, all you need to do is sign up for an account at https://locationiq.com/register to obtain your personal access token. This access token should then be integrated into your Maps Marker Pro configuration settings. Should you require even larger request limits, LocationIQ offers a range of paid plans at https://locationiq.com/pricing.
LocationIQ’s suite of location-related APIs encompasses various APIs like geocoding, reverse geocoding, map tiles, routing, geolocation, and more. For geocoding specifically, LocationIQ offers a combination of multiple datasets including OSM, OpenAddress, Geonames, and others, providing comprehensive geolocation APIs with global coverage.
Geocoding/ Maps Usage | Action |
Less than 1000 requests/day | Install Maps Marker Pro and start using geocoding/maps! |
Between 1000 to 5000 requests/day | Signup for LocationIQ’s free tier, get your Access Token from the dashboard & paste it in MapsMarkerPro settings |
More than 5000 requests/day | Signup for a premium plan with LocationIQ. Get your Access Token from the dashboard & paste it in MapsMarkerPro settings |
Geocoding takes a human-readable location, such as an address or place name, and turns it into specific latitude and longitude coordinates. This helps us locate things on a map.
Best Practices:
LocationIQ uses OpenStreetMap data to power its Dynamic and Static map APIs. LocationIQ Maps include support for Street, Dark and Light Map themes. LocationIQ Maps allow adding markers, lines, polygons, pop-ups and more.
In order to increase your daily limit from 1.000 to 5.000 requests/day/IP you need to sign up as follows:
That´s it. Afterwards you can start using LocationIQ geocoding when creating a new map or marker:
Keyless geocoding offers 1.000 requests/day/IP and a maximum of 2 requests per second. With a personalised access token, those limits increase to 5.000 requests/day. Larger plans are are available for higher usage limits.
1. What is LocationIQ and how does it integrate with Maps Marker Pro?
LocationIQ is a robust geocoding and maps service. With its integration into Maps Marker Pro, you can effortlessly convert location descriptions into precise coordinates, enriching your mapping experience.
2. Do I need a separate LocationIQ account for integration?
No, you don’t. As a Maps Marker Pro user, you’ll have direct access to LocationIQ’s geocoding APIs without needing a separate LocationIQ account.
3. What are the default usage limits for LocationIQ within Maps Marker Pro?
You’ll enjoy a daily limit of 1.000 geocoding requests per IP and a rate limit of 2 requests per second.
4. How can I increase my daily geocoding limit to 5.000/day?
To expand your daily limit to 5.000 geocoding requests per day, you can sign up for a LocationIQ account and integrate your API key into Maps Marker Pro’s settings.
5. Are there paid plans available for limits higher than 5.000/day?
Yes, LocationIQ offers various paid plans with increased limits for users with extensive geocoding needs.
6. How do I get started with the LocationIQ integration?
For existing Maps Marker Pro users, integration is automatic. To increase your daily limit and explore higher capacities, follow our simple guide to sign up for a LocationIQ account and integrate your API key.
7. Can I still use other geocoding providers?
Absolutely! While LocationIQ is the default, you can still choose from other geocoding providers within Maps Marker Pro based on your specific requirements.
8. Where can I find more information about LocationIQ’s offerings and plans?
Visit www.locationiq.com for details about LocationIQ’s services, plans, and capabilities.
9. What level of data can I expect with LocationIQ?
LocationIQ uses a combination of community datasets behind its Geocoder and Map APIs. You can expect excellent street level data worldwide and rooftop level data in certain regions
10. How do I troubleshoot any issues with the integration?
If you encounter any difficulties during the integration process or while using LocationIQ within Maps Marker Pro, feel free to contact our support team. We’re here to assist you.
The related terms of services can be found at https://locationiq.com/tos
HTTP Response Code | Error Message | Description |
400 | Invalid Request | Required parameters are missing, or invalid |
401 | Invalid key | An invalid Access Token was provided |
401 | Key not active – Please write to [email protected] | The Access Token provided is invalid or inactive |
403 | Service not enabled | The specific service is not enabled on your token. Write to [email protected] to enable this. |
403 | Access restricted | The request has been made from an unauthorized domain or IP address. |
404 | Unable to geocode | No location or places were found for the given input |
404 | Imagery not found | No style or tile available for the specified URL |
429 | Rate Limited Second | Request exceeded the per-second rate-limits set on your account |
429 | Rate Limited Minute | Request exceeded the per-minute rate-limits set on your account |
429 | Rate Limited Day | Request exceeded the per-day rate-limits set on your account |
500 | Unknown error – Please try again after some time | This is an error on the server’s side, we monitor this 24×7 and you should try again. |
When using batch geocoding or when ambiguous results are returned, any results within the provided bounding box will be moved to the top of the results list.
Change the default language of the results. You can pass two letters country codes (ISO 639-1). By default the language will be retrieved from the WordPress global variable $locale (with a fallback to en if not supported)
]]>If you are using the theme Newspaper available on Envato market it can be that map tiles for Google basemaps are not visible:
This is caused by the theme´s style.css – we already contacted the support and hope that the issue will be fixed with a new release of Newspaper theme soon.
Until this fix is available, you can workaround this issue by navigating to Newspaper / Theme Panel, select the tab “Custom code” and add the following CSS to the section “Custom CSS”:
body.td-animation-stack-type0 .td-animation-stack .entry-thumb,
body.td-animation-stack-type0 .post img {
opacity: unset !important;
}
as an alternative you can also add the following CSS:
.maps-marker-pro img {
opacity: 1 !important;
}
Snazzy Maps is a repository of different styles for Google Maps aimed towards web designers and developers.
If you want to use their styles for Google basemaps within Maps Marker Pro, please proceed as follows:
If the “Save”-button on map or marker edit pages is disabled and cannot be clicked, it is likely that this is caused by a plugin conflict. To verify this, please disable all other plugins but Maps Marker Pro and try again.
If this does not help, it is likely that there might be an issue with your general WordPress AJAX endpoint. Have a look into the browser console (can be opened with key F11 for example) to see if there are any error messages. Send us these error messages in a support ticket so that we can have a closer look.
]]>By default, maps created with Maps Marker Pro are responsive, which means, the map width adapts to the width of the parent HTML element the map is embedded in. This results e.g. in maps resizing on smaller devices to fit the corresponding width of the mobile device.
If you want to disable the responsive feature for a map, please open the map on backend, switch to the tab “Interaction” and disable the option “Responsive”:
]]>You have an idea how to improve Maps Marker Pro? Then please let us know by either submitting a support ticket or using our contact form.
]]>Each map has a QR code which point to the fullscreen view of a map.
The link to those QR codes can be found on the backend at “List all maps” when hovering the map name:
Clicking on this link shows the actual QR code for the map, which you can download and save as image with a right click for example:
]]>No, since v4.14.3, no extra action is needed if you want to use Maps Marker Pro also on a subdomain. The only preerquisite is, that you activated your license on your main domain first.
If you activated your license on a subdomain first, please follow the tutorial on how to transfer a license to a new domain – once finished, activate your license key on your main domain first (like www.mydomain.com) and you will be able to use Maps Marker Pro on subdomains (like staging.mydomain.com) afterwards too automatically.
]]>Maps Marker Pro is available in more than 46 translations thanks to a huge community of translators.
If you want to help to translate the plugin in your language, please visit our translation plattform https://translate.mapsmarker.com powered by Glotpress where everyone can register and start translating immediately. Translators get the following benefits if they help finish a translation (100% completeness):
– Translation completeness <=80% -> 1 free professional package (valid for 25 domains) worth 249€
– Translation completeness >80% and <=90% -> 1 free plus packackage (valid for 5 domains) worth 99€
– Translation completeness >90% and <=99% -> 1 free personal package (valid for 1 domain) worth 39€
– Translation completeness >99% and <100% -> backlink and credits only
Additionally you will get proper credits and backlinks within the plugin and on mapsmarker.com.
]]>If you are getting the error OVER_QUERY_LIMIT when trying to geocode an address with Google set as geocoding provider, this means that you exceeded the Google Maps Platform web services usage limits by:
The above problems can be address by combining two approaches:
We´d suggest to login to your Google API console and check and adjust your usage limits there.
As an alternative you can switch to another geocoding provider.
]]>