That's how I define a style for the notification:
NotificationCompat.BigPictureStyle notiStyle = new
NotificationCompat.BigPictureStyle();
notiStyle.setBigContentTitle(context.getString(R.string.notification_ticker));
notiStyle.setSummaryText(title);
notiStyle.bigPicture(map);
notiStyle.bigLargeIcon(map); //map - bitmap
But the bitmap is too large, and notification shows only a piece of an image with full width and cropped by height, a large icon shows a little part in the center of the image.