Meta Box
Support › MB Views › MAP in MB View doesn't display
I have insert an field :
{{ site.contact.ct_locatie.rendered }}
That works and display the map.
When I insert the custom map style nothing happened :
{{ mb.map( 'site.contact.ct_locatie', '100%', '480px', '14', '', 'Solexverhuur Woudenberg', 'Hier vindt je onze locatie' ) }}
What is wrong?
Hi Cees,
Please be aware that site is an object, contact and ct_locatie in this case is the property of that object.
site
contact
ct_locatie
If you want to pass the field ID as a string, you can add just ct_locatie
{{ mb.map( 'ct_locatie', '100%', '480px', '14', '', 'Solexverhuur Woudenberg', 'Hier vindt je onze locatie' ) }}