📄 form04.frm
字号:
VERSION 5.00
Object = "{9BD6A640-CE75-11D1-AF04-204C4F4F5020}#2.0#0"; "mo20.ocx"
Begin VB.Form Form04
Caption = "墨西哥地图"
ClientHeight = 5925
ClientLeft = 60
ClientTop = 345
ClientWidth = 8310
LinkTopic = "Form2"
ScaleHeight = 5925
ScaleWidth = 8310
StartUpPosition = 1 '所有者中心
Begin MapObjects2.Map Map1
Height = 5655
Left = 120
TabIndex = 0
Top = 120
Width = 8055
_Version = 131072
_ExtentX = 14208
_ExtentY = 9975
_StockProps = 225
BackColor = 16777215
BorderStyle = 1
Contents = "Form04.frx":0000
End
End
Attribute VB_Name = "Form04"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'Xuewei,2003/6/4
'addEvent练习;
Option Explicit
Dim Sym As New MapObjects2.Symbol
Dim Pt As MapObjects2.Point
Private 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 = moPaleYellow
Map1.Layers.Add layer
Set layer = New MapLayer
Set layer.GeoDataset = dc.FindGeoDataset("Rivers")
layer.Symbol.Color = moDarkGreen
Map1.Layers.Add layer
End Sub
Private Sub Form_Load()
With Map1.TrackingLayer.Symbol(0)
.SymbolType = moPointSymbol
.Font = "ESRI Transportation & Municipal"
.Size = 20
.Style = moTrueTypeMarker
.Color = moRed
End With
DrawLayer
End Sub
Private Sub Map1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Set Pt = Map1.ToMapPoint(X, Y)
Map1.TrackingLayer.Symbol(0).CharacterIndex = 103
Map1.TrackingLayer.AddEvent Pt, 0
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -