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 - 526 through 540 (of 554 total)
Problem: We would like to prevent Users from moving the map by adding draggable:false to the map options. Is this possible?
Solution: You can add map options with JavaScript by following the steps in the related documentation. The draggable option is being replaced by gestureHandling, but it is still available for now.
Problem: Some images displayed in map marker Info Windows (marker popups) are hanging off the right edge of the popup in tablet devices.
Solution: Add a fixed width to the images and include a 15px right margin using the following code:
/* - apply fixed dimensions to featured image to help resize on tablets */
@media only screen and (min-width: 599px) and (max-width: 768px) {
.gm-style-iw .attachment-thumbnail.size-thumbnail.wp-post-image {
height: 150px;
width: 150px;
margin-right: 15px;
display: block;
}
}