首页 / 浏览问题 / 移动GIS / 问题详情
跟踪图层线性显示问题
mxc
112EXP 2018年03月09日

使用产品 supermap-imobile-9.0.1-103-android 操作系统 Android 6.0

数据类型 文件型 smwu

问题详细描述:

在跟踪图层里加入线性GeoLine 。线性出现了豁口。如下图 黑框中 和黑箭头指向。

下面是添加代码

 GeoLine geoLine1 = new GeoLine();

Point2Ds point2Ds = new Point2Ds();
                Point2D start = line.getPart(0).getItem(0);
                point2Ds.add(start);
                for (int k = 1; k <= minIndex; k++) {
                    Point2D item = line.getPart(0).getItem(k);
                    point2Ds.add(item);


                }

                if (point2Ds.getCount()>=2)
                geoLine1.addPart(point2Ds);

      GeoStyle styleLx = new GeoStyle();
        styleLx.setLineColor(new Color(255, 0, 0));
        styleLx.setLineWidth(5f);
        geoLine1.setStyle(styleLx);
        map.getTrackingLayer().add(geoLine1, "location");

2 个回答

为什么图显示不完整

mxc
112EXP 2018年03月09日

还有断开的情况,线性是很明显的一串串点

mxc
112EXP 2018年03月09日
...