Hi,
I cannot reproduce the problem. I'm testing on Indigo/latest code form source (0.11.11). Which ROS distro are you on? Your square looks like the image projection (could it come from the Image plugin?). I assume you are using the latest rtabmap version as you have the /proj_map warning:
/proj_map topic is deprecated! Subscribe to /grid_map topic instead.
Just change /proj_map to /grid_map where subscribed to /proj_map. They are now exactly the same map with same parameters, see:
$ rosrun rtabmap_ros rtabmap --params | grep Grid/
How I tested:
$ roscore
$ rosparam set use_sim_time true
$ rosrun tf static_transform_publisher 0 0 0 -1.5707963267948966 0 -1.5707963267948966 camera_link zed_optical_frame 100
$ roslaunch rtabmap_ros rtabmap.launch depth_topic:=/camera/depth/image_rect_color rgb_topic:=/camera/left/image_rect_color camera_info_topic:=/camera/left/camera_info compressed:=true depth_image_transport:=raw rtabmapviz:=false rviz:=true rtabmap_args:="--delete_db_on_start --Odom/ImageDecimation 2 --Mem/ImagePreDecimation 2 --Mem/ImagePostDecimation 2"
$ rosbag play --clock 2016-10-01-00-08-33.bag
Because of the HD images on my poor laptop, I added some image decimation for odometry and memory update for convenience. To get "depth_image_transport" argument working, you should have the latest version of
rtabmap.launch.
Note that you can record compressed depth images too with "/camera/depth/image_rect_color/compressedDepth" topic if it is published.
cheers