Google Map
Last updated
Last updated
AVF supports the Google map field types (e.g. ACF Google map field), and allows to display the Map without additional JavaScript code.
To make use of the Google Map field you’ll need to first define the Google Map API key in your theme.
Copy the code snippet below and paste it into your theme’s functions.php file, replacing the ‘YOUR_KEY_HERE’ with your API key. Get Google Maps API key here.
Assign the Google Map field to your View by selecting it from the Field list.
Switch to the Field Options tab for more control of your map and its display.
Map Marker Icon - Customize the Map Marker by using your own icon or uploading an image from Flaticon (.png, .jpg allowed). Dimensions of 32x32px is recommended.
Don't use an SVG icon for the marker icon, as there is no way to restrict the dimensions using CSS. Rather upload the correct size .png or .jpg image.
Map Marker icon title - Shown when mouse hovers on Map Marker.
Hide Map - The Google Map is shown by default. Turn on the switcher to hide the map.
Show address from the map - The address is hidden by default. Turn this on to show the address from the map.
Map address format - By Default the address format is street number, street name, city, state, post code and country. You can change the order or hide some parts by using the provided variables in your Custom Template.
See guide for using ACF Image as Map Marker.
Visit the Playground and Navigate to Display Meta fields > Advanced fields.
This page focuses on embedding single maps on individual pages or Custom Post Type items. However, there are scenarios where displaying multiple CPT items on a single map is essential. For example, if you’re managing an "events" CPT, you might need to showcase all events on a single map to provide a comprehensive view of all locations.
The process leverages ACF to store item coordinates as post meta, allowing you to query these CPT items and render them as markers on a unified map.
For a step-by-step guide on this, refer to the "CPT items map" section in our blog article.