protected virtual void SetLocation(GeoPoint location)
        {
            _location = location;

            if (!GeoPoint.Empty.Equals(location))
            {
                _mapView.SetCamera(location, _mapView.Zoom);
            }
        }