VC++开发GIS系统(92)窗口的重绘(二)
发布时间: 2015-12-31
所属分类: VC++开发GIS系统
前文《VC++开发GIS系统(91)窗口的重绘(一)》中介绍到了一个getAllPoint函数,用来获取所有应该显示的图形。本文做一个具体介绍。
函数定义
在_malaIO.h的CPointIO类中增加下面的函数
void getAllPoint(malaScreen &pScreen,vector<malaPointFile>&pAllPoints,CString &fileName);//获取某个文件中某一范围的所有的点
参数:
malaScreen &pScreen 当前的屏幕坐标信息
vector
&pAllPoints 传入一个引用,用于保存所有满足要求的点 CString &fileName 点文件名(完整路径)
函数实现
实现代码如下:
//获取某个文件中某一范围的所有的点
void CPointIO::getAllPoint(malaScreen &pScreen, vector<malaPointFile>&pAllPoints, CString &fileName)
{
CFile file;
file.Open(LPCTSTR(fileName), CFile::modeRead | CFile::modeCreate | CFile::modeNoTruncate);
CArchive ar(&file, CArchive::load);
malaPoint pnt;
malaPointPro pntpro;
while (1)
{
try
{
ar >> pntpro.pointId >> pntpro.pointRadio >> pntpro.pointStyle >> pntpro.pointColor;
ar >> pnt.x >> pnt.y;
}
catch (CMemoryException* e)
{
break;
}
catch (CFileException* e)
{
break;
}
catch (CException* e)
{
break;
}
//判断是否在显示屏幕范围内
malaLogic mylog;
malaRect myrc;
myrc.xmin = pScreen.lbx;
myrc.ymin = pScreen.lby;
ScreenToCoord(pScreen.wScreen, 0, pScreen, &myrc.xmax, &myrc.ymax);
if (mylog.isPntInRect(pnt, myrc))
{
malaPointFile MyPoint(pnt, pntpro);
pAllPoints.push_back(MyPoint);
}
}
}
这里使用的是《VC++开发GIS系统(76)补充知识使用CArchive读写文件》提到的方法来读取文件上的每一个点,并且用到了一个malaLogic、malaRect来判断是否在显示屏幕范围内,其具体实现请参考下文。
详细代码可以参考:GitHub
相关阅读
声明
1.本文所分享的所有需要用户下载使用的内容(包括但不限于软件、数据、图片)来自于网络或者麻辣GIS粉丝自行分享,版权归该下载资源的合法拥有者所有,如有侵权请第一时间联系本站删除。
2.下载内容仅限个人学习使用,请切勿用作商用等其他用途,否则后果自负。
手机阅读
公众号关注
知识星球
手机阅读
最新GIS干货
私享圈子