I have the following enqueued in functions.php:
wp_enqueue_script( 'google-map', 'https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false', array(), '3', true );
wp_enqueue_script( 'google-map-init', get_template_directory_uri() . '/library/js/google-maps.js', array('google-map', 'jquery'), '0.1', false );
acf_form() is loaded on the frontend. The problem is that, while the map displays properly on the actual page, it comes out blank in acf_form(). I’m assuming it’s conflicting from a possible duplicate of the Google Maps api?
Does anyone have any idea as to how I can troubleshoot it?
Thanks!!