google 映射标记数组?

google maps marker array?

大家好,如果有的话:))

这段代码产生空指针异常

我想在 MO 中添加几个标记

LAT = Double.parseDouble(A 部分); 液化天然气 = Double.parseDouble(B 部分);

                        LatLng Standort = new LatLng(LAT, LNG);
                          MO[y] = mMap.addMarker(new MarkerOptions()
                                                    .position(Standort)
                                                    .icon(BitmapDescriptorFactory.fromResource(R.drawable.kreis)));
                        builder.include(MO[y].getPosition());

需要数组类型 - 找到 com.google.android.gms.maps.model.maker

定义 private static Marker MOrt = null;

不知道我的回答对你有没有帮助。

首先声明数组,然后添加点和添加标记我只是用添加标记函数开始一个循环。

LatLng[] point_new = new LatLng[3];
        point_new[0] = new LatLng(24.8926596, 67.0835093);
        point_new[1] = new LatLng(48.85837,2.294481);
        point_new[2] = new LatLng(0, 0);
        for (int i = 0; i < point_new.length; i++) {
            drawMarker(point_new[i]);
        }

       //drawMarker method
        private void drawMarker(LatLng point) {
    // Creating an instance of MarkerOptions
    MarkerOptions markerOptions = new MarkerOptions();

    // Setting latitude and longitude for the marker
    markerOptions.position(point);

    // Adding marker on the Google Map
    map.addMarker(markerOptions);
}

最终输出

希望这会有所帮助! 快乐编码