This is my code
ContourPlot[{y^4 - 3 x*y^2 + x^3}, {x, -2.5, 2.5}, {y, -2, 2},
Contours -> {Automatic, 50}, BoundaryStyle -> Directive[Red, Thick],
ContourShading -> None, Axes -> True, AxesLabel -> {x, y},
PlotRange -> {{-3, 3}, {-2.5, 2.5}},
LabelStyle -> Directive[Blue, Bold], Frame -> False]

And I want to insert following points (color=green and thick):
P1=(1.5,1.5)
P2=(1.5,-1.5)
Each point shall be be labeled with the value:
-1.6875
This value shall be visible in the Plot.
