How do you do the route needed for ACF Google Maps

So I made a route for a specific page, i did a console.log to make sure javascript loads there and everything is good. I tried to follow these instructions

https://www.advancedcustomfields.com/resources/google-map/

and of course, everything works if I just add everything on the PHP file but I want to have a dedicated js route called ..route/locationsTemplateDefault.js

how can you import the file

into a route js file?

I tried
import google from 'https://maps.googleapis.com/maps/api/js?key=HereGoesMyAPIKey' but when I do
yarn build it throws this error

 27:35  error  'google' is not defined                   no-undef

27:64 error Missing trailing comma comma-dangle
29:33 error ‘google’ is not defined no-undef
63:43 error Missing trailing comma comma-dangle
67:36 error ‘google’ is not defined no-undef
69:29 error Missing trailing comma comma-dangle
79:42 error ‘google’ is not defined no-undef
80:46 error Missing trailing comma comma-dangle
84:21 error ‘google’ is not defined no-undef
104:36 error ‘google’ is not defined no-undef
108:49 error Missing trailing comma comma-dangle

Because of course the script is not being imported. What’s the best way to do it? How can I import the api key from the route?

This is the content from route/locationsTemplateDefault.js Of course MYKEYGOESHERE is my actual key

import google from 'https://maps.googleapis.com/maps/api/js?key=MYKEYGOESHERE'

export default {
init() {

(function( $ ) {

            /**
             * initMap
             *
             * Renders a Google Map onto the selected jQuery element
             *
             * @date    22/10/19
             * @since   5.8.6
             *
             * @param   jQuery $el The jQuery element.
             * @return  object The map instance.
             */
            function initMap( $el ) {

              // Find marker elements within map.
              var $markers = $el.find('.marker');

              // Create gerenic map.
              var mapArgs = {
                zoom        : $el.data('zoom') || 16,
                mapTypeId   : google.maps.MapTypeId.ROADMAP
              };
              var map = new google.maps.Map( $el[0], mapArgs );

              // Add markers.
              map.markers = [];
              $markers.each(function(){
                initMarker( $(this), map );
              });

              // Center map based on markers.
              centerMap( map );

              // Return map instance.
              return map;
            }

            /**
             * initMarker
             *
             * Creates a marker for the given jQuery element and map.
             *
             * @date    22/10/19
             * @since   5.8.6
             *
             * @param   jQuery $el The jQuery element.
             * @param   object The map instance.
             * @return  object The marker instance.
             */
            function initMarker( $marker, map ) {

              // Get position from marker.
              var lat = $marker.data('lat');
              var lng = $marker.data('lng');
              var latLng = {
                lat: parseFloat( lat ),
                lng: parseFloat( lng )
              };

              // Create marker instance.
              var marker = new google.maps.Marker({
                position : latLng,
                map: map
              });

              // Append to reference for later use.
              map.markers.push( marker );

              // If marker contains HTML, add it to an infoWindow.
              if( $marker.html() ){

                // Create info window.
                var infowindow = new google.maps.InfoWindow({
                  content: $marker.html()
                });

                // Show info window when marker is clicked.
                google.maps.event.addListener(marker, 'click', function() {
                  infowindow.open( map, marker );
                });
              }
            }

            /**
             * centerMap
             *
             * Centers the map showing all markers in view.
             *
             * @date    22/10/19
             * @since   5.8.6
             *
             * @param   object The map instance.
             * @return  void
             */
            function centerMap( map ) {

              // Create map boundaries from all map markers.
              var bounds = new google.maps.LatLngBounds();
              map.markers.forEach(function( marker ){
                bounds.extend({
                  lat: marker.position.lat(),
                  lng: marker.position.lng()
                });
              });

              // Case: Single marker.
              if( map.markers.length == 1 ){
                map.setCenter( bounds.getCenter() );

                // Case: Multiple markers.
              } else{
                map.fitBounds( bounds );
              }
            }

      // Render maps on page load.
            $(document).ready(function(){
              $('.acf-map').each(function(){
                var map = initMap( $(this) );
              });
            });

          })(jQuery);
},

finalize() {
},
};

This topic was automatically closed after 42 days. New replies are no longer allowed.