📄 form03c.frm
字号:
VERSION 5.00
Object = "{9BD6A640-CE75-11D1-AF04-204C4F4F5020}#2.0#0"; "mo20.ocx"
Begin VB.Form Form03c
Caption = "form1"
ClientHeight = 6360
ClientLeft = 60
ClientTop = 345
ClientWidth = 8400
LinkTopic = "Form1"
ScaleHeight = 6360
ScaleWidth = 8400
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
Caption = "Command1"
Height = 495
Left = 3600
TabIndex = 1
Top = 5760
Width = 1215
End
Begin MapObjects2.Map Map1
Height = 5655
Left = 0
TabIndex = 0
Top = 0
Width = 8415
_Version = 131072
_ExtentX = 14843
_ExtentY = 9975
_StockProps = 225
BackColor = 16777215
BorderStyle = 1
Contents = "form03c.frx":0000
End
End
Attribute VB_Name = "Form03c"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'Xuewei,2003/6/27
'求点到line的距离;
Option Explicit
Dim oPoint1 As MapObjects2.Point
Dim line1 As MapObjects2.Line
Private Sub Command1_Click()
Set oPoint1 = Map1.Extent.Center
Map1.Refresh
End Sub
Private Sub Form_Load()
DrawLayer '加载墨西哥地图;
Command1.Caption = "显示点"
Me.Caption = "计算点到点的距离"
End Sub
Private Sub Map1_AfterTrackingLayerDraw(ByVal hDC As stdole.OLE_HANDLE)
Dim Sym1 As New MapObjects2.Symbol
Dim Sym2 As New MapObjects2.Symbol
If Not oPoint1 Is Nothing Then
Sym1.SymbolType = moPointSymbol
Sym1.Color = moRed
Sym1.Size = 10
Sym1.Style = 0
Map1.DrawShape oPoint1, Sym1
End If
If Not line1 Is Nothing Then
Sym2.Color = moBlue
Sym2.Size = 2
'Sym2.Style = 2
Map1.DrawShape line1, Sym2
End If
End Sub
Private Sub Map1_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single)
Dim fDist As Double
If Button = 1 Then
Set line1 = Map1.TrackLine
fDist = oPoint1.DistanceTo(line1)
End If
MsgBox fDist
End Sub
Sub DrawLayer()
Dim dc As New DataConnection
Dim layer As MapLayer
dc.Database = App.Path + "\..\" + "Mexico"
If Not dc.Connect Then
MsgBox "在指定的文件夹下没找到图层数据文件!"
End
End If
Set layer = New MapLayer
Set layer.GeoDataset = dc.FindGeoDataset("States")
layer.Symbol.Color = moLimeGreen
Map1.Layers.Add layer
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -