This patch for Geolocation field module provides a destination handler which exposes geolocation fields for mapping.

Geolocation field requires both latitude and longitude values, so it doesn't make sense to use the primary value, i.e. map to field itself.
In order to use it, please map values to the subfields (mapping to the field won't work)

Fields

lat - Geolocation field latitude value
lng - Geolocation field longitude value
language - Geolocation field value language

Example

// Correct way: map to subfields.
$this->addFieldMapping('field_geolocation:lat', 'geolocation_lat');
$this->addFieldMapping('field_geolocation:lng', 'geolocation_lng');

// Incorrect way: map to the field itself.
$this->addFieldMapping('field_geolocation', 'geolocation');