ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Map functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Opens the popup of a marker displayed in a Map control.
Example
// Displays a marker
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"
MAP_MyMap.AddMarker(MyMarker)
 
// Open marker popup
MAP_MyMap.DisplayPopup(MyMarker)
Syntax
<Result> = <Map control>.DisplayPopup(<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.
<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.
Remarks
Component: wd290obj.dll
Minimum version required
  • Version 26
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/19/2023

Send a report | Local help