Public Class LabelTest
Inherits System.Windows.Forms.Label
#Region "缺罩 组件设计器生成的贺扮凳代码 "
Public Sub New(Container As System.ComponentModel.IContainer)
MyClass.New()
'Windows.Forms 类撰写设计器支持所必需的
Container.Add(me)
End Sub
Public Sub New()
MyBase.New()
'该调用是组件设计器所必需的。
InitializeComponent()
'在 InitializeComponent() 调用之后添禅旅加任何初始化
End Sub
'组件重写 dispose 以清理组件列表。
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub
'组件设计器所必需的
Private components As System.ComponentModel.IContainer
'注意: 以下过程是组件设计器所必需的
'可以使用组件设计器修改此过程。
'不要使用代码编辑器修改它。
<System.Diagnostics.DebuggerStepThrough()>Private Sub InitializeComponent()
components = New System.ComponentModel.Container()
End Sub
#End Region
Private p_BorderColor As Color = Color.Gray '默认为灰色
Private Property BorderColor() As Color
Get
Return p_BorderColor
End Get
Set(ByVal Value As Color)
p_BorderColor = Value
End Set
End Property
Protected Overrides Sub OnPaint(ByVal e As System.Windows.Forms.PaintEventArgs)
MyBase.OnPaint(e)
If MyBase.BorderStyle = BorderStyle.None Then '如果是无边框则绘制,否则不予理睬
Dim drp As New System.Drawing.Pen(p_BorderColor)
Dim crect As Rectangle = e.ClipRectangle
crect.Inflate(-1, -1)
e.Graphics.DrawRectangle(drp, crect)
drp.Dispose()
End If
End Sub
End Class
Matplotlib 是是一个 Python 的 2D绘图库,在数据分析的过程中通常充当辅助姿扒液图迹物表的角色。 Matplotlib 的图表此橘组成如下:
在 Python 中使用 Matplotlib 和 Seaborn 库进行图表的绘制时,经常会接触到 color 、 linestyle 和 marker 。为了突出图表可视化的效果,常常会对这三者进行样式的设置。
1.简单颜色缩写
2.单色
3.调色板
部分marker样式展示如下图:
准备一张自定义图片并上传到自己的网站。我们以百度图标为例。记住这张图片的url地址。后面会调用。
打开百度地图api查看调用方法
我们需要几个工具
1、静态图可视化工具
2、自定义Marker样式工具
3、标签位置-labels和标签样式-labelStyles 工具
这几个工具在静态图api接口说明页面可以找到
我们先在乱局瞎百度地图API-静态地图生成哗空助手里找到我们要显示的地方,并调整。我们会得到一个经纬度值。下面我们以天腊芹安门为例
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)