当前位置:网站首页>ArcEngine (3) zoom in and zoom out through the MapControl control to achieve full-image roaming
ArcEngine (3) zoom in and zoom out through the MapControl control to achieve full-image roaming
2022-08-03 08:05:00 【Prospector in the rice field】
放大
private void 放大ToolStripMenuItem_Click(object sender, EventArgs e)
{
IEnvelope envelope = new EnvelopeClass();
envelope = MapControl.Extent;//Set the current map extent
envelope.Expand(0.5, 0.5,true);//make the rectangle smaller
MapControl.Extent = envelope;//Set the rectangle to the reduced rectangle
MapControl.Refresh();//刷新地图
}
缩小
private void 缩小ToolStripMenuItem_Click(object sender, EventArgs e)
{
IEnvelope envelope = new EnvelopeClass();
envelope = MapControl.Extent;//Set the current map extent
envelope.Expand(2, 2, true);//Make the rectangle box bigger
MapControl.Extent = envelope;//Set the rectangle to the enlarged rectangle
MapControl.Refresh();//刷新地图
}
全图
private void 全图ToolStripMenuItem_Click(object sender, EventArgs e)
{
MapControl.Extent = MapControl.FullExtent;
}
漫游
private void 漫游ToolStripMenuItem_Click(object sender, EventArgs e)
{
MapControl.Pan();
}
边栏推荐
猜你喜欢
随机推荐
控制bean的加载
netstat 及 ifconfig 是如何工作的。
Postman will return to results generated CSV file to the local interface
ArcEngine(三)通过MapControl控件实现放大缩小全图漫游
工控机防勒索病毒浅析
Mysql如何对两张表的相同字段,同时查询两张数据表
ViewModel 记录下 +
使用pipreqs导出项目所需的requirements.txt(而非整个环境)
热部署系统实现
thop 使用心得
Docker启动mysql
Pop Harmony Basics Big Notes
The ORB - SLAM2 extracting feature points
ArcEngine (1) Loading vector data
Roson的Qt之旅#105 QML Image引用大尺寸图片
《剑指Offer》刷题之打印从1到最大的n位数
sqlserver2019安装失败
解决移动端有纵向滚动条但是不能滚动的问题
sqlite 日期字段加一天
consul理解