|
|
|
|
|
MapDisplayPopup (Function) In french: CarteAffichePopup Opens the popup of a marker displayed in a Map control.
MyLocation is geoPosition
MyLocation.Latitude = 43.613708
MyLocation.Longitude = 3.876972
MyMarker is Marker
MyMarker.Position = MyLocation
MyMarker.WithPopup = True
MyMarker.Name = "Position"
MyMarker.Description = "Location of point of interest"
MapAddMarker(MAP_MyMap, MyMarker)
MapDisplayPopup(MAP_MyMap, MyMarker)
Syntax
<Result> = MapDisplayPopup(<Map control> , <Marker>)
<Result>: Boolean - True if the marker popup could be opened,
- False otherwise. To get more details on the error, use ErrorInfo.
<Map control>: Control name Name of the Map control to be used. If this parameter corresponds to an empty string (""), the Map control to which the current process belongs will be used. <Marker>: Marker variable Name of the Marker variable that describes the position of the marker to display. This marker must have been added on the Map.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|