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
Adds a new shape (polygon, line, circle) to the map displayed in a Map control.
Example
// Add a polygon to the Map control
Polygon is MapPolygon
FOR EACH PointPosition OF arrPositions
Polygon.Point.Add(PointPosition)
END
Polygon.LineColor = LightRed
Polygon.ActionClick = ClickProc
MAP_MyMap.AddShape(Polygon)
Syntax
<Result> = <Map control>.AddShape(<Shape>)
<Result>: Boolean
  • True if the shape could be added to the Map control,
  • False otherwise. To get more details on the error, use ErrorInfo.
<Map control>: Control name
Name of the Map control to be used.
<Shape>: MapCircle, MapPolygon or MapPolyline variable
Shape to be drawn on the map displayed in the Map control. This shape can be described using one of the following types of variables:
Remarks
  • Once the shape has been added, you can use its name (Name property of the associated variable).
  • If the shape has already been added to the Map control or if it is invalid (e.g.: polygon with an insufficient number of points), a fatal error will be displayed.
  • To delete a shape drawn in a Map control, use <Map>.DeleteShape.
  • To modify a shape drawn in a Map control, use <Map>.ModifyShape.
Related Examples:
WD Extended Map Training (WINDEV): WD Extended Map
[ + ] This example shows the different features of the Map control in desktop (Windows) and mobile (Android, iOS) devices
Business / UI classification: UI Code
Component: wd290obj.dll
Minimum version required
  • Version 26
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/26/2023

Send a report | Local help