有了需求,又得弄那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);
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);
这里也上一张图片:
相关文章
暂无评论...