Hi Grant,
Sorry for the late reply – we had Easter here.
Regarding your question – this is possible to adjust on the theme level or using available hooks, something like that:
function customize_events_maker_hooks() {
// remove google map from before the title
remove_action( 'em_after_single_event_title', 'em_display_single_event_google_map', 40 );
// put google map after the event content
add_action( 'em_single_event_content', 'em_display_single_event_google_map', 20 );
}
add_action( 'wp', 'customize_events_maker_hooks' );