5
    using System.Drawing;
    using System.Drawing.Drawing2D;

    namespace WindowsFormsApplication1
    {      
        [Serializable]
        public class GMapBaloonTool: GMapToolTip, ISerializable
        {
            public float Radius = 10f;   
            public GMapBaloonTool(GMapMarker marker)
                : base(marker)
            {
                Stroke = new Pen(Color.FromArgb(140, Color.Navy));
                Stroke.Width = 3;
                this.Stroke.LineJoin = LineJoin.Round;
                this.Stroke.StartCap = LineCap.RoundAnchor;    
                Fill = Brushes.Pink;
            }

上面的代码,使工具提示改变它的颜色。
在此处输入图像描述

我正在使用gMaps.net在 winforms C# 中创建自定义谷歌地图。我正在努力添加一个标记 + onClick 事件,该事件将显示来自 DVR 的视频源。
唯一的问题是,内置的GMapsToolTip只显示字符串,尽管我有一个作为相机控件的 activeX。
我需要的是在工具提示中显示相机(activeX)。在greatmaps的论坛上
看到了这个。创作者说我可以制作自定义工具提示。
所以我要问的是,是否可以使用这个 system.drawing 命名空间创建/添加控件?
如果可能的话,请告诉我如何..
如果没有,如果你知道任何其他方式,请告诉我。

            public override void OnRender(Graphics g)
            {
                System.Drawing.Size st = g.MeasureString(Marker.ToolTipText, Font).ToSize();
                System.Drawing.Rectangle rect = new System.Drawing.Rectangle(Marker.ToolTipPosition.X, Marker.ToolTipPosition.Y - st.Height, st.Width + TextPadding.Width, st.Height + TextPadding.Height);
                rect.Offset(Offset.X, Offset.Y);    
                using (GraphicsPath objGP = new GraphicsPath())
                {
                    objGP.AddLine(rect.X + 2 * Radius, rect.Y + rect.Height, rect.X + Radius, rect.Y + rect.Height + Radius);
                    objGP.AddLine(rect.X + Radius, rect.Y + rect.Height + Radius, rect.X + Radius, rect.Y + rect.Height);

                    objGP.AddArc(rect.X, rect.Y + rect.Height - (Radius * 2), Radius * 2, Radius * 2, 90, 90);
                    objGP.AddLine(rect.X, rect.Y + rect.Height - (Radius * 2), rect.X, rect.Y + Radius);
                    objGP.AddArc(rect.X, rect.Y, Radius * 2, Radius * 2, 180, 90);
                    objGP.AddLine(rect.X + Radius, rect.Y, rect.X + rect.Width - (Radius * 2), rect.Y);
                    objGP.AddArc(rect.X + rect.Width - (Radius * 2), rect.Y, Radius * 2, Radius * 2, 270, 90);
                    objGP.AddLine(rect.X + rect.Width, rect.Y + Radius, rect.X + rect.Width, rect.Y + rect.Height - (Radius * 2));
                    objGP.AddArc(rect.X + rect.Width - (Radius * 2), rect.Y + rect.Height - (Radius * 2), Radius * 2, Radius * 2, 0, 90); // Corner

                    objGP.CloseFigure();    
                    g.FillPath(Fill, objGP);
                    g.DrawPath(Stroke, objGP);
                }

                g.DrawString(Marker.ToolTipText, Font, Foreground, rect, Format);    
         g.DrawString(ToolTipText, ToolTipFont, TooltipForeground, rect, ToolTipFormat);    
            }

            #region ISerializable Members    
            void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context)
            {
                info.AddValue("Radius", this.Radius);    
                base.GetObjectData(info, context);
            }

            protected GMapBaloonTool(SerializationInfo info, StreamingContext context)
                : base(info, context)
            {
                this.Radius = Extensions.GetStruct<float>(info, "Radius", 10f);
            }    
            #endregion
        }       
    }

这段代码使气球呈圆形,所以我不知道如何添加我的控件看起来像这样.. (由 html 制成,但我需要在 winforms 上使用它)

在此处输入图像描述

希望有人能帮助我。哦,如果你只是将我重定向回伟大地图的讨论网站,请不要。我从那里看不懂,所以我在这里问。

4

2 回答 2

1

您可以尝试在相机控件上使用 DrawToBitmap 方法。我预计会发生以下三件事之一:

  • 你得到一个黑色矩形
  • 在您调用 DrawToBitmap 的那一刻,您会得到一帧相机
  • 您将获得实时视频源(感谢叠加视频播放功能)

您最好的选择是 2 号和 3 号,因为它们可用于提供您想要的功能。如果你得到数字 1,则控件渲染不使用 Winforms 的通常渲染逻辑,所以你必须解决它。

在实践中,您可能希望更直接地访问相机渲染输出,因为每秒创建 25 个位图可能需要做的工作量太大而无用。你会到达那里:)

于 2013-11-28T14:12:47.660 回答
0

已经让这个为我自己工作了。使用表单实例创建信息窗口 是链接..

于 2013-12-05T01:10:11.880 回答