You could try something like:
coors=data[[All,;;2]];
labels=data[[All,3]];
Graphics[{
Point[coors],
MapThread[Text[#1,#2,{0,-1}]&,{labels,coors}]
},
AspectRatio->1,
Frame->True,
PlotRangePadding->Scaled[.05],
PlotRange->{{0.0003,0.003},{0.0003,0.003}}
]