In my BLEND Drupal Theme I've this error

Google Maps API error: MissingKeyMapError https://developers.google.com/maps/documentation/javascript/error-messa…

Where I can add my Google Mps API Key?

Thank you

Hi clement chazarra,

please open maps.inc file under \sites\all\modules\drupalexp\modules\dexp_shortcodes\includes then replace.

drupal_add_js('http://maps.google.com/maps/api/js?sensor=false');

by

drupal_add_js('https://maps.googleapis.com/maps/api/js?sensor=false&key=your_api_key_here');

Please create a key then replace "your_api_key_here" by the key.

Thanks!