アプリで Google Maps V2 Android を使用しています。
シンガポールの地点にマーカーを置きます。
しかし、アプリを起動するたびに、最初のウィンドウが常に南アメリカになっていることに気付きます。
中央にマーカーがあるシンガポール エリアに地図を自動的にズームするにはどうすればよいですか?
次のようにマーカーを配置します。
googleMapLocation = new LatLng(latitude, longitude);
map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
map.addMarker(new MarkerOptions().position(googleMapLocation).title("I am here!"));