MapXTreme2004之工具篇

2021-04-01 23:27:03 字數 889 閱讀 8375

1. 使用mapcontrol自帶的工具

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";

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. 建立自定義工具

待續……