有了需求,又得弄那mapxtreme地图了,需要增加一个道路区域监控。
折腾了一天,算是有点结果。
一:画线
前台js可以通过自带的测量功能来画线,使用command="distance",同样双击结束画线。
上一展画线的图:
2.画区域
前台js可以通过自带的功能来区域,使用command="polygonselection",同样双击结束画区域
同样上一下图:
二:后台显示:
画线的可以直接用画线的画就行了。以前说过就不说了。
以下为显示多边型代码:
featuregeometry pt =new multipolygon(layer.coordsys, curvesegmenttype.linear,polypoint[bean.id_road.value].toarray());
simpleinterior polystyle = new simpleinterior(9, system.drawing.color.blue, system.drawing.color.blue, true);
compositestyle comstyle = new compositestyle(polystyle);
feature feature = new mapinfo.data.feature(table.tableinfo.columns);
feature.geometry = pt;
feature.style = comstyle;
table.insertfeature(feature);
版权声明:本文原创发表于博客园,作者为路过秋天,原文链接:
http://www.cnblogs.com/cyq1162/archive/2010/03/24/1693968.html