我在我的 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);
}
}
}