SuperMap.Connector.Control.Forms.Marker.Marker C# (CSharp) Method

Marker() public method

构造函数。
public Marker ( string id, Point2D point2D, Bitmap bitmap, ToolTip toolTip ) : System
id string 标注的ID。
point2D Point2D 坐标点。
bitmap System.Drawing.Bitmap 标识的自定义图片
toolTip ToolTip 标注的提示。
return System
        public Marker(string id, Point2D point2D, Bitmap bitmap, ToolTip toolTip)
        {
            this._id = id;
            this._point2D = point2D;
            this._bitmap = bitmap;
            this._toolTip = toolTip;
            this._type = GeometryType.POINT;
        }

Same methods

Marker::Marker ( string id, Point2D point2D, MarkerType markerType, ToolTip toolTip ) : System
Marker