Hi @eugene,
As google apis script is non-AMD script then use shim with exports config to specify the global ‘google.maps’ as module value
deps: ['gmaps'],
paths: {
'gmaps': 'https://maps.googleapis.com/maps/api/js?'
},
shim: {
'gmaps' : {exports: 'google.maps'}
}