|
MapDisplayPosition (Function) In french: CarteAffichePosition
// Centers the map displayed by the "MAP_Position" control on a geographical position MyPosition is geoPosition MapDisplayPosition(MAP_Position, MyPosition) // Equivalent syntax (without animation): MAP_Position = MyPosition
Syntax Versions 20 and later New in version 20
Related Examples:
|
Unit examples (WEBDEV): The Map control
[ + ] This example explains how to use the Map control of WEBDEV. It can be used to display a map that includes markers as well as an itinerary.
|
|
Unit examples (WINDEV): The Map control
[ + ] Using the Map control of WINDEV. It is used to display a map that includes markers as well as an itinerary.
|
This page is also available for…
|
|
|
| |
| | MapLicenseGgl("AIzaSyDbSVKYPwB1a-_vPbDzAr6LgAfIj4iW2hc")
PositionWx is geoPosition PositionWx.Latitude = -25.4401779 PositionWx.Longitude = -49.2118695
MarkerWx is Marker MarkerWx.Description = "WX INFORMATICA" MarkerWx.Name = "WX INFORMATICA" MarkerWx.Position = PositionWx
MapAddMarker(GoogleMaps,MarkerWx)
GoogleMaps.DisplayPosition(PositionWx) GoogleMaps..Zoom = 18 |
|
|
|
| |
| |
| |
| |
| |
| |
| | |
| |