c# 进行AE开发时,如何在地图上定位出一个点

 一、文本形式的气泡提示框

由于本人是初学,所以具体的含义尚未弄清楚,直接给出代码吧!

        /// <summary>
        /// ARCGIS Label标记
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void tsmi_MapOperate_LocationMark_Click(object sender, EventArgs e)
        {
            ITextElement te = createTextElement(120.85811111, 30.21402778, "潮位站--上虞");
            this.axMapControl1.ActiveView.GraphicsContainer.AddElement(te as IElement, 1);
            this.axMapControl1.Refresh(esriViewDrawPhase.esriViewGraphics, null, null);
        }


        public ITextElement createTextElement(double x_longitude, double y_latitude, string text_content)
        {

            IBalloonCallout bc = CreateBalloonCallout(x_longitude, y_latitude);
            IRgbColor color_rgb = new RgbColorClass();
            ITextSymbol text_symbol = new TextSymbolClass();
            IFormattedTextSymbol ftext_symbol;
            IPoint point = new PointClass();
            ITextElement text_elt = new TextElementClass();
            double width, height;
            IElement e;

            color_rgb.Green = 255;
            text_symbol.Color = color_rgb;

            ftext_symbol = text_symbol as IFormattedTextSymbol;
            ftext_symbol.Background = bc as ITextBackground;

            //fts.Size = 8;
            text_symbol.Size = 8;

            width = this.axMapControl1.Extent.Width / 13;
            height = this.axMapControl1.Extent.Height / 20;
            point.PutCoords(x_longitude + width, y_latitude + height);
            
            //IMarkerElement me = new MarkerElementClass();
            text_elt.Symbol = text_symbol;
            text_elt.Text = text_content;

            e = text_elt as IElement;
            e.Geometry = point;


            return text_elt;

        }

        public IBalloonCallout CreateBalloonCallout(double x, double y)
        {
            IRgbColor color_rgb = new RgbColorClass();
            ISimpleFillSymbol simpleFillSbl = new SimpleFillSymbolClass();
            IPoint point = new PointClass(); ;
            IBalloonCallout balloonCallout = new BalloonCalloutClass(); // 气球类型的插图编号

            color_rgb.Red = 255;
            color_rgb.Green = 255;
            color_rgb.Blue = 200;

            simpleFillSbl.Color = color_rgb;
            simpleFillSbl.Style = esriSimpleFillStyle.esriSFSSolid;
            point.PutCoords(x, y);

            balloonCallout.Style = esriBalloonCalloutStyle.esriBCSRoundedRectangle;
            balloonCallout.Symbol = simpleFillSbl;
            balloonCallout.LeaderTolerance = 10;
            balloonCallout.AnchorPoint = point;

            return balloonCallout;
        }
View Code

 

 

 

 

 

 

 

 

 

 

参考文章

1. GIS二次开发(C#+AE)

2. ArcEnbine开发之添加标

3. GIS(一)——在js版搜索地图上添加Marker标记

GIS ArcEngine字段标注显示代码 & 可以同时显示多个标注

离线GoogleMapAPIV3加载本地谷歌地图并添加标注

ArcGIS_Engine+C#实例开发教程+添加标注  

GIS的学习(二十一)在osmdroid 地图中添加marker 并添加事件

arcEngine经典代码-添加气泡提示框(标注,文本)

Openlayers进阶学习——多标注显示/点击弹出框/图层控制/搜索定位/新增标注等

ArcGIS_Engine+C#实例开发教程+添加标注

GIS空间数据库的建立

ArcMap技巧总结

 

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值