I think it would be better to explicitly register your views as "components", like so:
class GoogleMapView extends View {
}
// Register here - first parameter would be the element name, second is the View class.
Marionette.ViewTag.registerComponent('google-map', GoogleMapView);
Ultimately I'd like to get rid of the cp- prefix.