这叫什么图?怎么画?

img

这不是 写着平面示意图么,二维平面坐标系
可以用VS的单文档来实现,在视图里绘制

你好,类似这种图,画了还能标记的,matlab可以做到:

figure(1); clf

x = rand(10,1)*12; y = rand(10,1)*6;%随机10个点
plot(x,y,'b*')% 用星号标记位置
arrayfun(@(i)text(x(i)+0.3,y(i)-0.3,num2str(i),...
    'HorizontalAlignment','center','color','b'),1:numel(x)) %用数字标记点
hold on
% 
words = {'岩石漏','矿石漏','岩场','倒装场I','倒装场II'};
px = [1,10,11,4.2,8.8];
py = [5.2,5,3.2,1,1.4];
plot(px,py,'bo')% 用星号标记位置
arrayfun(@(i)text(px(i)+0.3,py(i)-0.3,words{i},'HorizontalAlignment',...
    'center','color','b'),1:numel(px)) %用数字标记点
axis([0 12 0 6])
axis('equal')
legend('表示铲位','表示卸点')

img