有了需求,又得弄那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);
这里也上一张图片:
版权声明:本文原创发表于 博客园,作者为 路过秋天 本文欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则视为侵权。 |
个人微信公众号 |
Donation(扫码支持作者):支付宝: |
Donation(扫码支持作者):微信: |