To resolve the following issues :
1) sensor-not-required
2) retired-version
In file: google-map.php
wp-content/themes/woodmart/inc/shortcodes/google-map.php
line 39
wp_enqueue_script( 'google.map.api', 'https://maps.google.com/maps/api/js?sensor=false&libraries=geometry&v=3.22&key=' . $google_key . '', array(), '', false );
change with this :
wp_enqueue_script( 'google.map.api', 'https://maps.google.com/maps/api/js?&libraries=geometry&v=3.41&key=' . $google_key . '', array(), '', false );
1 ) – sensor-not-required
delete this string -> sensor=false
2) retired-version
change version: v=3.22 -> 3.41
Best Regards,