当前位置:网站首页>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();
}边栏推荐
猜你喜欢
随机推荐
Transformer、BERT、GPT 论文精读笔记
sqlite date field plus one day
pyspark df secondary sorting
pgaudit 的安装使用《postgresql》
品牌方发行NFT时,应如何考量实用性?
drop database出现1010
升级
Nanny level explains Transformer
实时目标检测新高地之#YOLOv7#更快更强的目标检测器
Charles packet capture tool learning record
【C语言】函数栈帧的创建和销毁详解
Roson的Qt之旅#106 QML在图片上方放置按钮并实现点击按钮切换图片
tmp
Pop Harmony Basics Big Notes
ArcEngine (2) loading the map document
DeFi明斯基时刻:压力测试与启示
工控机防勒索病毒浅析
ArcEngine(六)用tool工具实现拉框放大缩小和平移
学习Glide 常用场景的写法 +
The use of the database table structure document generation tool screw









