Toolset Maps is a WordPress plugin that allows you to add address fields to any content type or users and display any content on Google Maps.
Toolset Maps User Guides include detailed documentation for creating these special address fields, adding pointers to them and displaying them on maps.
When you ask for help or report issues, make sure to tell us the versions of the Toolset plugins that you have installed and activated.
Viewing 15 topics - 721 through 735 (of 747 total)
Problem:
Toolset Maps lets us insert Google Maps, which in turn use Google's scripts to gather data from visitors of that map.
How can we create a consent for that asks the visitor to agree BEFORE the scripts are loaded and data potentially gathered by Google?
Solution:
You should try to create a table manually using the following SQL script:
CREATE TABLE IF NOT EXISTS 'wp4d_toolset_maps_address_cache' (
'address_passed' varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL,
'address' varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
'point' point NOT NULL,
PRIMARY KEY ('address_passed')
) DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
Problem:
Client is developing a site which will have thousands of posts with address fields that will be used in distance searches. Is Toolset able to handle a site of that size?
Solution:
Yes, since the address storage and distance querying were completely refactored in Maps 1.8 it can handle very large sites (subject to the usual server limitations).
I have mutlitple posts with a custom field postal code from the toolset map plugin. I have a view that searches through this post with a textfield but i would like to filter the post with the distance search filter. But i cannot get it to work properly.
Problem: I would like to know if I can use latitude and longitude values instead of an address to position a map marker.
Solution: It may be possible to use 3rd party latitude and longitude values to position markers on a map, however, distance-based features require Toolset's address fields.