MapXTreme2004的工具用起来确实不如MapX5.0的顺手了,下面是整理的MXT6.2的工具用法:
1. 使用MapControl自带的工具
1. 1 WinApp:
MapControl.Tools初始包含以下工具
00. AddCircle
01. AddEllipse
02. AddLine
03. AddPoint
04. AddPolygon
05. AddPolyline
06. AddRectangle
07. AddText
08. Arrow
09. Center
10. Label
11. Pan
12. Select
13. SelectPolygon
14. SelectRadius
15. SelectRect
16. SelectRegion
17. ZoomIn
18. ZoomOut
可通过以下语句来使用:
MapControl.Tools.LeftButtonTool = “ZoomIn”;
1.2 WebApp:
MapControl.MapTools初始包含以下工具
00. MapInfoWebZoomIn
01. MapInfoWebZoomOut
02. MapInfoWebPan
03. MapInfoWebCenter
04. MapInfoWebPointSelection
05. MapInfoWebRadiusSelection
06. MapInfoWebRectangleSelection
07. MapInfoWebPolygonSelection
08. MapInfoWebDistance
09. MapInfoWebInfo
可通过以下语句来使用:
MapControl.MapTools.CurrentTool = ZoomInMapTool.Toolname;
或
MapControl.MapTools.CurrentTool = “MapInfoWebZoomIn”;
2. 创建自定义工具
2.1 WinApp:
2.2 WebApp:
待续……