0

我在我的 maps v2 项目中导入了 clusterkraf。现在如何添加 latlng 点?

我已经添加了这段代码,但我不知道如何添加 10 lat lng 点。
除了下面的代码之外,我从来没有真正找到任何方法。我非常感谢任何帮助。

提前致谢。

  public class YourMapPointModel {
        public LatLng latLng;
        public YourMapPointModel(LatLng latLng) {
            this.latLng = latLng;
        }
        // encapsulation omitted for brevity
    }

    public class YourActivity extends FragmentActivity {
        YourMapPointModel[] yourMapPointModels = new YourMapPointModel[] { new YourMapPointModel(new LatLng(0d, 1d) /* etc */ ) };
        ArrayList<InputPoint> inputPoints;

        private void buildInputPoints() {
            this.inputPoints = new ArrayList<InputPoint>(yourMapPointModels.length);
            for (YourMapPointModel model : this.yourMapPointModels) {
                this.inputPoints.add(new InputPoint(model.latLng, model));
            }
        }



        Clusterkraf clusterkraf;

        private void initClusterkraf() {
            if (googleMap != null && this.inputPoints != null && this.inputPoints.size() > 0) {
                com.twotoasters.clusterkraf.Options options = new com.twotoasters.clusterkraf.Options();
                // customize the options before you construct a Clusterkraf instance
                this.clusterkraf = new Clusterkraf(googleMap, options, this.inputPoints);
            }
        }

    }
4

2 回答 2

1

您可以使用以下代码作为要点:

        Position_mark = new LatLng(35.7008, 51.437);
        Marker hamburg = map.addMarker(new MarkerOptions().position(
                Position_mark).title("Hamburg"));

        Position_Now = Position_mark;
        map.moveCamera(CameraUpdateFactory.newLatLngZoom(Position_mark,
                15));

        map.animateCamera(CameraUpdateFactory.zoomTo(10), 2000, null);

并将 coomands 放入 for(;;) ..... 加 10 分

于 2013-10-30T08:45:09.380 回答
0

在 Google Maps V2 中测试用于路由点的 Google 方向库

https://github.com/jd-alexander/Google-Directions-Android

于 2013-10-30T11:20:01.163 回答