Hi Chad,
Sure. The following code is in the function bound as the callback for the subscriber to the topic on which I publish the robot's base pose (I could also use a TF update callback, but for unrelated reasons I am not at the moment):
var basePose = new ROSLIB.Pose(message.base_pose);
this.viewer.camera.position.set(basePose.position.x, basePose.position.y, 6);
this.viewer.camera.lookAt(new THREE.Vector3(basePose.position.x, basePose.position.y, 0));
this.viewer.camera.updateMatrixWorld();
Here, this.viewer is a ROS3D.Viewer. The idea was to set the camera above the robot in the xy-plane, and then look down on it for a top-down type view. Please let me know if you need more information!
Thanks again,
Ellis