1

こんにちは、

アプリケーションを起動すると、次の図のようにマップビューが表示されます。

ここに画像の説明を入力

しかし、私はある時点でいくつかのズームを使用してマップビューを開始したいと思います。これに似たものです:

ここに画像の説明を入力

どの方法を使用する必要がありますか?

前もって感謝します。

4

4 に答える 4

3

ズーム レベルをマップ コントローラーに追加します。

mapView.getController().setZoom(17); // an int that suits you

ズーム レベルの詳細については、https ://developers.google.com/maps/documentation/staticmaps/#Zoomlevels をご覧ください。

中心を設定するには、次を使用できます。

 mapView.getController().setCenter(new GeoPoint(latitude,longitude));
于 2013-03-11T15:38:08.250 に答える
0
 mapView.getController().setZoom(17); // an int that suits you
 mapView.getController().setCenter(new GeoPoint(latitude,longitude));

これが解決策です。

于 2013-03-11T15:47:24.387 に答える
0

設定 -

mapView.setStreetView(true);
于 2013-03-11T15:41:30.190 に答える
0

エジプトを表示するには、それを使用します-

  String coordinates[] = {"18.352566007", "73.78921587"};//here you can set geopoints of egypt
    double lat = Double.parseDouble(coordinates[0]);
    double lng = Double.parseDouble(coordinates[1]);

    p = new GeoPoint(
        (int) (lat * 1E6), 
        (int) (lng * 1E6));//p is GeoPoint

    mc.animateTo(p);
    mc.setZoom(17); 
    mapView.invalidate();
于 2013-03-11T15:49:43.923 に答える