Try a simple example like [itex](x_1, y_1)= (0, 0)[/itex] and the distance is 1.
Then with the Euclidean distance you have [itex]\sqrt{x^2+ y^2}= 1[/itex] which is the same as [itex]x^2+ y^2= 1[/itex]. Yes, that is a circle with center at (0, 0) and radius 1..
With the taxicab metric, that is |x|+ |y|= 1. If x and y are both positive it is x+ y= 1 which is the line segment from (1, 0) to (0, 1). If x is negative and y is positive, it is -x+ y= 1 which is the line segment from (0, 1) to (-1, 0). If x and y are both negative, it is -x- y= 1 which is the line segment from (-1, 0) to (0, -1). Finally, if x is positive and y is negative, it is x- y= 1 which is the line segment from (0, -1) to (1, 0). Yes, that is a square with its diagonals horizontal and vertical.
With the max distance it is max(|x|,|y|)= 1. If x and y are both positive and x< y that is |y|= y= 1 which is the horizontal line segment from (0, 1) to (1, 1). If x and y are both positive and y< x, that is |x|= x= 1 which is that vertical line segment from (1, 0) to (1, 1). You check the other quadrants:
If x is negative and y is positive and x< y ... If y< x ...