*/
private Placemark getCurrentPlacemark(ServerSessionManager sessionManager) {
// Fetch the current translation of the avatar and the (x, y, z) of its
// position
ViewManager manager = ViewManager.getViewManager();
ViewCell viewCell = manager.getPrimaryViewCell();
CellTransform viewTransform = viewCell.getWorldTransform();
Vector3f location = viewTransform.getTranslation(null);
float x = location.x;
float y = location.y;
float z = location.z;