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#中创建自定义Google地图。我正在努力添加一个标记+ onClick事件,它将显示来自DVR的视频输入
唯一的问题是,内置的 GMapsToolTip 只显示字符串,尽管我有一个activeX作为相机的控件。
我需要的是在工具提示中显示相机(activeX)
在大图中的论坛上看到this。创作者说我可以制作自定义工具提示
所以我要问的是,是否可以使用此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上)
希望有人可以帮助我。 哦,如果你只是将我重定向回到伟大地图的讨论网站,请不要。从那里我无法理解,所以我在这里问。
答案 0 :(得分:1)
您可以尝试在相机控件上使用DrawToBitmap方法。我期待发生以下三件事之一:
您最好的选择是2号和3号,因为它们可用于提供您想要的功能。如果你得到数字1,控件渲染不使用Winforms的常用渲染逻辑,所以你必须解决它。
在实践中,您可能希望更直接地访问相机渲染输出,因为每秒创建25位图可能有点太多工作无用。你会到达那里:)
答案 1 :(得分:0)
已经让这个为我自己工作了。使用表单实例创建 infowindow This是链接..