ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Map functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Returns the coordinates (in pixels) of the point corresponding to a geographical position (latitude and longitude).
Android Note: This function is available in the Android emulator and in the Android simulator.
Example
// Retourne le point de la carte correspondant à la position courante de l'utilisateur
MaPosition is geoPosition
MaPosition.Latitude = 1.442951
MaPosition.Longitude = 43.604363
Trace(CARTE_Position.InfoPosition(MaPosition))
WindowsAndroidiPhone/iPad
// Retourne le point de la carte correspondant à la position courante de l'utilisateur
MaPosition is geoPosition
MaPosition = GPSGetPosition()
IF ErrorOccurred = False THEN
	RETURN CARTE_Position.InfoPosition(MaPosition)
END
Syntax
<Result> = <Map control>.InfoPosition(<Position>)
<Result>: Character string
Coordinates of the point corresponding to the geographical position. The coordinates are returned in the following format:
<X> + TAB + <Y>
<Map control>: Control name
Name of the Map control to be used.
<Position>: geoPosition variable
Name of a variable of type geoPosition corresponding to the geographic position whose coordinates are sought on the map.
Remarks
  • The coordinates returned by <Map>.InfoPosition can correspond to a point that is not currently visible in the Map control (negative coordinates for example).
  • 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 coordinates will be.
Related Examples:
The Map control 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.
The Map control 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.
Component: wd300obj.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/17/2024

Send a report | Local help