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
Returns the geographical position (latitude and longitude) corresponding to a point in a Map control.
Android Remark: This function is available in the Android emulator and in the Android simulator.
Example
// Add a marker at the click location in a Map control
// (code to include in the click code of control)
MyLocation is geoPosition
MyPosition = MapInfoXY(MAP_Position, MouseXPos(), MouseYPos())
IF ErrorOccurred = False THEN
MyMarker is Marker
MyMarker.Position = MyLocation
MapAddMarker(MAP_Position, MyMarker)
END
Syntax
<Result> = MapInfoXY(<Map control> , <X> , <Y>)
<Result>: geoPosition variable
geoPosition variable corresponding to the geographical position of the point on the map.
WindowsAndroidiPhone/iPad In an error occurs, the ErrorOccurred variable is set to True and ErrorInfo returns the details of the error.
<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 event belongs will be used.
<X>: Integer
X-coordinate (in pixels) of point to study. This coordinate is relative to the upper-left corner of the control. If this coordinate is negative, the position will be sought for a point that is not displayed on the map.
<Y>: Integer
Y-coordinate (in pixels) of point to study. This coordinate is relative to the upper-left corner of the control. If this coordinate is negative, the position will be sought for a point that is not displayed on the map.
Remarks
  • To retrieve the coordinates of a point in the Map control in which an event was run (e.g. click):
  • The calculation of position takes into account the zoom level in the Map control during the call to the function. The higher the zoom level is, the more precise the position will be.
Component: wd290obj.dll
Minimum version required
  • Version 17
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help