ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
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
Modifies a marker displayed in a Map control.
Example
// Add a Marker: the icon changes when the user clicks on it
MyLocation is geoPosition
MyLocation.Latitude = 43.613708 
MyLocation.Longitude = 3.876972
MyMarker is Marker
MyMarker.Position = MyLocation
MyMarker.ActionClick = "ProcMarkerClick"

MapAddMarker(MAP_Position, MyMarker)
PROCEDURE ProcMarkerClick(AMarker is Marker)

AMarker.Image = "marker_click.png"
MapModifyMarker(MAP_Position, AMarker)
Syntax
<Result> = MapModifyMarker(<Map control> , <Marker>)
<Result>: Boolean
  • True if the marker was modified,
  • 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 event belongs will be used.
<Marker>: Marker variable
Name of the Marker variable corresponding to the marker to modify.
Remarks
Component: wd300obj.dll
Minimum version required
  • Version 17
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help