I have a View which I will post below in which I am trying to add info to a Map and could use some help/guidance.

Background:
I have 2 content types. One for Locations and one for Physician information (bio). In the Physician content type I am using an Entity Reference Field so that they can select which offices they work at which brings in the Locations I have created from the Locations content type. I am using GetLocation module to enter in the address information and bring in the latitude and longitude.

View Issue:
I am then trying to create a View Block with a Map. I am trying to pull in the the Entity Reference to create a Map block that will only show up as a block on the bottom of the Physicians page and only show those locations they selected in their bio page. I have it working in Views using the Format of Grid where it shows on the Physicians page only the locations they selected. The problem I have is when I try and change the Format to a GetLocations Map or a Map (Google API, via IPGV&M) it will not show those locations on the map.

So I must be bringing in things the wrong way for the map but tried different things and cannot figure out what I am doing wrong. The code for my current View setup is below. I think I prefer the GetLocations Map over IPGV&M for some of the settings, but in the end I just want it to work.

If anything needs to be further explained just let me know.

$view = new view();
$view->name = 'new_test_block';
$view->description = '';
$view->tag = 'default';
$view->base_table = 'node';
$view->human_name = 'new test block';
$view->core = 7;
$view->api_version = '3.0';
$view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */

/* Display: Master */
$handler = $view->new_display('default', 'Master', 'default');
$handler->display->display_options['title'] = 'new test block';
$handler->display->display_options['use_more_always'] = FALSE;
$handler->display->display_options['access']['type'] = 'perm';
$handler->display->display_options['cache']['type'] = 'none';
$handler->display->display_options['query']['type'] = 'views_query';
$handler->display->display_options['exposed_form']['type'] = 'basic';
$handler->display->display_options['pager']['type'] = 'none';
$handler->display->display_options['pager']['options']['offset'] = '0';
$handler->display->display_options['style_plugin'] = 'grid';
$handler->display->display_options['row_plugin'] = 'fields';
/* Relationship: Entity Reference: Referenced Entity */
$handler->display->display_options['relationships']['field_physician_office_target_id']['id'] = 'field_physician_office_target_id';
$handler->display->display_options['relationships']['field_physician_office_target_id']['table'] = 'field_data_field_physician_office';
$handler->display->display_options['relationships']['field_physician_office_target_id']['field'] = 'field_physician_office_target_id';
/* Relationship: Content: Office Location (field_office_location) */
$handler->display->display_options['relationships']['field_office_location_glid']['id'] = 'field_office_location_glid';
$handler->display->display_options['relationships']['field_office_location_glid']['table'] = 'field_data_field_office_location';
$handler->display->display_options['relationships']['field_office_location_glid']['field'] = 'field_office_location_glid';
$handler->display->display_options['relationships']['field_office_location_glid']['relationship'] = 'field_physician_office_target_id';
/* Field: Getlocations Fields: Latitude */
$handler->display->display_options['fields']['latitude']['id'] = 'latitude';
$handler->display->display_options['fields']['latitude']['table'] = 'getlocations_fields';
$handler->display->display_options['fields']['latitude']['field'] = 'latitude';
$handler->display->display_options['fields']['latitude']['relationship'] = 'field_office_location_glid';
/* Field: Getlocations Fields: Longitude */
$handler->display->display_options['fields']['longitude']['id'] = 'longitude';
$handler->display->display_options['fields']['longitude']['table'] = 'getlocations_fields';
$handler->display->display_options['fields']['longitude']['field'] = 'longitude';
$handler->display->display_options['fields']['longitude']['relationship'] = 'field_office_location_glid';
/* Field: Content: Physician Office */
$handler->display->display_options['fields']['field_physician_office']['id'] = 'field_physician_office';
$handler->display->display_options['fields']['field_physician_office']['table'] = 'field_data_field_physician_office';
$handler->display->display_options['fields']['field_physician_office']['field'] = 'field_physician_office';
$handler->display->display_options['fields']['field_physician_office']['label'] = '';
$handler->display->display_options['fields']['field_physician_office']['element_label_colon'] = FALSE;
$handler->display->display_options['fields']['field_physician_office']['settings'] = array(
  'link' => 0,
);
$handler->display->display_options['fields']['field_physician_office']['delta_offset'] = '0';
/* Sort criterion: Content: Post date */
$handler->display->display_options['sorts']['created']['id'] = 'created';
$handler->display->display_options['sorts']['created']['table'] = 'node';
$handler->display->display_options['sorts']['created']['field'] = 'created';
$handler->display->display_options['sorts']['created']['order'] = 'DESC';
/* Contextual filter: Content: Nid */
$handler->display->display_options['arguments']['nid']['id'] = 'nid';
$handler->display->display_options['arguments']['nid']['table'] = 'node';
$handler->display->display_options['arguments']['nid']['field'] = 'nid';
$handler->display->display_options['arguments']['nid']['default_action'] = 'default';
$handler->display->display_options['arguments']['nid']['default_argument_type'] = 'node';
$handler->display->display_options['arguments']['nid']['summary']['number_of_records'] = '0';
$handler->display->display_options['arguments']['nid']['summary']['format'] = 'default_summary';
$handler->display->display_options['arguments']['nid']['summary_options']['items_per_page'] = '25';
/* Filter criterion: Content: Published */
$handler->display->display_options['filters']['status']['id'] = 'status';
$handler->display->display_options['filters']['status']['table'] = 'node';
$handler->display->display_options['filters']['status']['field'] = 'status';
$handler->display->display_options['filters']['status']['value'] = 1;
$handler->display->display_options['filters']['status']['group'] = 1;
$handler->display->display_options['filters']['status']['expose']['operator'] = FALSE;
/* Filter criterion: Content: Type */
$handler->display->display_options['filters']['type']['id'] = 'type';
$handler->display->display_options['filters']['type']['table'] = 'node';
$handler->display->display_options['filters']['type']['field'] = 'type';
$handler->display->display_options['filters']['type']['value'] = array(
  'physicians' => 'physicians',
);

/* Display: Block */
$handler = $view->new_display('block', 'Block', 'block');