MapView (gb.map)
Properties
AllowEffect
|
Returns or sets this Control visual effects.
|
Border
|
Returns or sets the border type of the control.
|
Lock
|
|
Map
|
Returns the inner Map object
|
ShowControls
|
Returns or sets Zoom control.
|
Inherited properties
Methods
Inherited methods
Events
Inherited events
Examples
This is an example to get you started.
Public Sub Form_Open()
With MapView1
.Map.AddTile("OpenStreetMap", "http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png").Copyright = " ©OpenStreetMap "
.Map.Zoom = 13
.Map.Center = MapPoint(49.46232, -2.58659) 'Latitude and Longitude
End With
End