当我点击第一页的按钮时,在谷歌地图android上显示多个位置或制造商

时间:2016-09-26 12:32:05

标签: java android google-maps google-maps-markers

private void showMaps() {
    Button mapButton = (Button) findViewById(R.id.mapButton);
    mapButton.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {


            latlngs.add(new LatLng(12.334343, 33.43434)); //some latitude and logitude value
            for (LatLng point : latlngs) {
                options.position(point);
                options.title("someTitle");
                options.snippet("someDesc");
                googleMap.addMarker(options);
            }


        }
    });
}
当我触摸按钮时,我希望实现这一点。它将链接到谷歌地图并显示从阵列列表中选择的多个位置。当我进行调试时,latlngs为null。我不知道会发生什么。 enter image description here

0 个答案:

没有答案