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