@Override
 public boolean equals(final Object other) {
   return other != null
       && (other == this
           || other instanceof GoogleCameraPositionDelegate
               && cameraPosition.equals(((GoogleCameraPositionDelegate) other).cameraPosition));
 }