博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
arcgis 画各种element(LineElement, PolygonElement)
阅读量:6252 次
发布时间:2019-06-22

本文共 803 字,大约阅读时间需要 2 分钟。

hot3.png

private IElement createPolylineElement() throws Exception	{		ISegmentCollection segmentCollection = new Path();				CircularArc arc = new CircularArc();		Point start = new Point();		Point end = new Point();		Point middle = new Point();		start.putCoords(200, 200);		end.putCoords(400, 200);		middle.putCoords(300, 250);		arc.constructThreePoints(start, end, middle, false);		segmentCollection.addSegment(arc, null, null);				Polyline polyline = new Polyline();		IGeometry geometry = (IGeometry)(segmentCollection);		polyline.addGeometry(geometry, null, null);				ILineSymbol lineSymbol = MakeNewSimpleLineSymbol();		LineElement lineElement = new LineElement();		lineElement.setSymbol(lineSymbol);		lineElement.setGeometry(polyline);				return lineElement;	}

转载于:https://my.oschina.net/u/172969/blog/159700

你可能感兴趣的文章
【SSH网上商城项目实战29】使用JsChart技术在后台显示商品销售报表
查看>>
python 基础复习 09 之基础函数
查看>>
Extjs 4
查看>>
Java内存模型(JMM)以及 垃圾回收机制 小结
查看>>
开源3D游戏引擎Irrlicht简介
查看>>
如何花更少的时间学习更多的知识
查看>>
学习鸟哥的Linux私房菜笔记(8)——文件查找与文件管理2
查看>>
day04 列表 增删改查 元组 range
查看>>
php 调用百度sms来发送短信的实现示例
查看>>
基于canvas的原生JS时钟效果
查看>>
PL/SQL查看表结构
查看>>
JSON的学习理解
查看>>
经典SQL语句大全
查看>>
升级fedora 18到fedora 19
查看>>
Dictionary和数组查找效率对比
查看>>
alias命令详情
查看>>
自定义异步加载资源插件
查看>>
easyui combobox两种不同的数据加载方式
查看>>
Smarty配置与实例化
查看>>
***Redis hash是一个string类型的field和value的映射表.它的添加、删除操作都是O(1)(平均)。hash特别适合用于存储对象...
查看>>