-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathMainForm.dfm
More file actions
276 lines (276 loc) · 6.16 KB
/
MainForm.dfm
File metadata and controls
276 lines (276 loc) · 6.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
object formMain: TformMain
Left = 427
Top = 268
Caption =
'Delphi with Edge Google Maps Viewer Component Demo - Copyright (' +
'c) Ethea S.r.l.'
ClientHeight = 729
ClientWidth = 1445
Color = clBtnFace
Constraints.MinHeight = 550
Constraints.MinWidth = 890
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
Position = poScreenCenter
Visible = True
WindowState = wsMaximized
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
TextHeight = 13
object PanelHeader: TPanel
Left = 0
Top = 0
Width = 1445
Height = 209
Align = alTop
TabOrder = 0
ExplicitWidth = 1441
object gbMapAttributes: TGroupBox
Left = 1
Top = 1
Width = 198
Height = 207
Align = alLeft
Caption = 'Map Attributes'
TabOrder = 0
object lbZoom: TLabel
Left = 135
Top = 16
Width = 26
Height = 13
Caption = 'Zoom'
end
object Label5: TLabel
Left = 6
Top = 16
Width = 51
Height = 13
Caption = 'View Mode'
end
object Zoom: TSpinEdit
Left = 135
Top = 32
Width = 57
Height = 22
MaxValue = 0
MinValue = 0
TabOrder = 1
Value = 15
OnChange = ZoomChange
end
object MapTypeIdComboBox: TComboBox
Left = 6
Top = 32
Width = 126
Height = 22
Style = csOwnerDrawFixed
ItemIndex = 0
TabOrder = 0
Text = 'ROADMAP'
OnChange = MapTypeIdComboBoxChange
Items.Strings = (
'ROADMAP'
'SATELLITE'
#39'HYBRID'
'TERRAIN')
end
object cbCenterOnClick: TCheckBox
Left = 6
Top = 60
Width = 100
Height = 17
Caption = 'Center on click'
TabOrder = 2
OnClick = CheckBoxStreeViewClick
end
object mapControlGroupBox: TGroupBox
Left = -1
Top = 79
Width = 196
Height = 99
Caption = 'Map Controls'
TabOrder = 3
object CheckBoxTraffic: TCheckBox
Left = 7
Top = 17
Width = 90
Height = 17
Caption = 'Traffic'
TabOrder = 0
OnClick = CheckBoxTrafficClick
end
object CheckBoxBicycling: TCheckBox
Left = 102
Top = 17
Width = 90
Height = 17
Caption = 'Bicycling'
TabOrder = 1
OnClick = CheckBoxBicyclingClick
end
object CheckBoxStreeView: TCheckBox
Left = 7
Top = 40
Width = 90
Height = 17
Caption = 'Street View'
TabOrder = 2
OnClick = CheckBoxStreeViewClick
end
object CheckBoxFullScreen: TCheckBox
Left = 7
Top = 63
Width = 90
Height = 17
Caption = 'Full Screen'
TabOrder = 4
OnClick = CheckBoxFullScreenClick
end
object CheckBoxZoom: TCheckBox
Left = 102
Top = 40
Width = 90
Height = 17
Caption = 'Zoom'
TabOrder = 3
OnClick = CheckBoxZoomClick
end
object CheckBoxMapType: TCheckBox
Left = 102
Top = 63
Width = 90
Height = 17
Caption = 'Map Type'
TabOrder = 5
OnClick = CheckBoxMapTypeClick
end
end
end
object GroupBox1: TGroupBox
Left = 199
Top = 1
Width = 302
Height = 207
Align = alLeft
Caption = 'Location'
TabOrder = 1
object LabelLongitude: TLabel
Left = 30
Top = 109
Width = 47
Height = 13
Alignment = taRightJustify
Caption = 'Longitude'
end
object LabelAddress: TLabel
Left = 10
Top = 14
Width = 39
Height = 13
Caption = 'Address'
end
object LabelLatitude: TLabel
Left = 38
Top = 79
Width = 39
Height = 13
Alignment = taRightJustify
Caption = 'Latitude'
end
object MemoAddress: TMemo
Left = 10
Top = 29
Width = 163
Height = 44
Lines.Strings = (
'')
TabOrder = 0
end
object ButtonGotoLocation: TButton
Left = 177
Top = 79
Width = 99
Height = 48
Caption = 'Go to Latitude Lngitude'
TabOrder = 3
WordWrap = True
OnClick = ButtonGotoLocationClick
end
object Longitude: TEdit
Left = 83
Top = 106
Width = 90
Height = 21
TabOrder = 4
end
object ButtonGotoAddress: TButton
Left = 178
Top = 29
Width = 99
Height = 44
Caption = 'Go to Address'
TabOrder = 1
OnClick = ButtonGotoAddressClick
end
object Latitude: TEdit
Left = 83
Top = 79
Width = 90
Height = 21
TabOrder = 2
end
end
object BottomPanel: TPanel
Left = 1292
Top = 1
Width = 152
Height = 207
Align = alRight
TabOrder = 2
object ShowPrintUIButton: TButton
AlignWithMargins = True
Left = 4
Top = 66
Width = 144
Height = 25
Align = alTop
Caption = 'Show Print UI'
TabOrder = 2
OnClick = ShowPrintUIButtonClick
ExplicitWidth = 564
end
object ShowMapButton: TButton
AlignWithMargins = True
Left = 4
Top = 35
Width = 144
Height = 25
Align = alTop
Caption = 'Show Map'
TabOrder = 1
OnClick = ShowMapButtonClick
ExplicitWidth = 564
end
object HideMapButton: TButton
AlignWithMargins = True
Left = 4
Top = 4
Width = 144
Height = 25
Align = alTop
Caption = 'Hide map'
TabOrder = 0
OnClick = HideMapButtonClick
ExplicitWidth = 564
end
end
end
object PopupMenu: TPopupMenu
Left = 416
Top = 264
end
end