既に設定されている GoogleMap マーカー内のテキストを変更することはできますか? MarkerOptions を使用して、タイトルとスニペットを元々次のように設定しています。
SupportMapFragment theMapFragment = (SupportMapFragment)getSupportFragmentManager().findFragmentById(R.id.map);
GoogleMap theMap = theMapFragment.getMap();
MarkerOptions theMarker = new MarkerOptions();
theMarker.position(theLatLng);
theMarker.title("My title");
theMarker.snippet("This is my snippet");
theMarker.visible(true);
theMap.addMarker(theMarker);
後で、ユーザーが何かをタップしたときに、リバース ジオコード ルックアップを実行し、タイトル/スニペットを変更して住所情報を含めたいと考えています。