125

私の質問は、私の場所とズームインビューの両方を開くために、Googleマップを設定する方法を知っている人はいますか?

現在、メインビューはアフリカまで開いており、ズームアウトしています。

それで、私は何日も探していましたが、見つけることができるのは次のとおりです。

1) 1 つの Google マップで 2 つのこと (ズームインと現在地への移動など) をアニメーション化することはできませんか? したがって、アニメーションを設定する前にズームを設定する方法を理解できれば、この問題は解決されます。それが問題になる傾向があります.1つを変更することはできますが、両方を変更することはできません.

2) 役立つ可能性のある他のクラスを見つけましたが、クラスが Google マップを操作できるようにコードを設定する方法についてのヘルプはありません。

これは私がこれまで保持してきたコードであり、機能するものもあれば、機能しないものもあります。後で役に立つかもしれないと思ったものもあります。

package com.MYWEBSITE.www;

import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.LatLng;
import android.content.Context;
import android.location.Criteria;
import android.location.Location;
import android.location.LocationManager;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.view.Menu;

public class MainActivity extends FragmentActivity {
private GoogleMap map;  

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main_layout);

    map = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
    map.setMyLocationEnabled(true);

    //LocationSource a = (LocationSource) getSystemService(Context.LOCATION_SERVICE);
    //LocationManager b = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
    //map.setLocationSource(a);

    Criteria criteria = new Criteria();
    LocationManager locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
    String provider = locationManager.getBestProvider(criteria, false);
    Location location = locationManager.getLastKnownLocation(provider);
    double lat =  location.getLatitude();
    double lng = location.getLongitude();
    LatLng coordinate = new LatLng(lat, lng);

    //CameraPosition.Builder x = CameraPosition.builder();
    //x.target(coordinate);
    //x.zoom(13);

    //Projection proj = map.getProjection();
    //Point focus = proj.toScreenLocation(coordinate);

    //map.animateCamera(CameraUpdateFactory.newLatLng(coordinate));
    map.animateCamera(CameraUpdateFactory.zoomBy(13));
    //map.moveCamera(CameraUpdateFactory.newLatLng(coordinate));


    ////LatLngBounds bounds = mMap.getProjection().getVisibleRegion().latLngBounds;
}
}
4

11 に答える 11

207

1 つの Google マップで 2 つのこと (ズームインと現在地への移動など) をアニメーション化することはできませんか?

コーディングの観点から、それらを順番に実行します。

    CameraUpdate center=
        CameraUpdateFactory.newLatLng(new LatLng(40.76793169992044,
                                                 -73.98180484771729));
    CameraUpdate zoom=CameraUpdateFactory.zoomTo(15);

    map.moveCamera(center);
    map.animateCamera(zoom);

ここでは、最初にカメラを移動し、次にカメラをアニメーション化しますが、どちらもanimateCamera()呼び出しである可能性があります。GoogleMapこれらが 1 つのイベントに統合されるかどうかは、あまりにも速く過ぎていくので、私にはわかりません。:-)

上記のコードをプルしたサンプル プロジェクトを次に示します。


申し訳ありませんが、この回答には欠陥があります。aを作成してから、 from thatを作成することにより、これをワンショットで真に行う方法については、Rob の回答を参照してください。CameraPositionCameraUpdateCameraPosition

于 2012-12-28T19:51:33.920 に答える
168

位置、ズーム、方位、傾きを一度に変更できます。通話時間を設定することもできanimateCamera()ます。

CameraPosition cameraPosition = new CameraPosition.Builder()
    .target(MOUNTAIN_VIEW)      // Sets the center of the map to Mountain View
    .zoom(17)                   // Sets the zoom
    .bearing(90)                // Sets the orientation of the camera to east
    .tilt(30)                   // Sets the tilt of the camera to 30 degrees
    .build();                   // Creates a CameraPosition from the builder
map.animateCamera(CameraUpdateFactory.newCameraPosition(cameraPosition));

ここのドキュメントを見てください:

https://developers.google.com/maps/documentation/android/views?hl=en-US#moving_the_camera

于 2013-01-08T23:20:52.407 に答える
54

これはあなたの質問に対する簡単な解決策です

LatLng coordinate = new LatLng(lat, lng);
CameraUpdate yourLocation = CameraUpdateFactory.newLatLngZoom(coordinate, 5);
map.animateCamera(yourLocation);
于 2013-04-15T15:36:50.613 に答える
13

このようにしてみてください-

public class SummaryMapActivity extends FragmentActivity implements LocationListener{

 private GoogleMap mMap;
 private LocationManager locationManager;
 private static final long MIN_TIME = 400;
 private static final float MIN_DISTANCE = 1000;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.summary_mapview);

    if (mMap == null) {
        // Try to obtain the map from the SupportMapFragment.
        mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map))
                .getMap();
        // Check if we were successful in obtaining the map.
        if (mMap != null) {
            mMap.addMarker(new MarkerOptions().position(new LatLng(0, 0)).title("Marker"));
        }
    }
    mMap.setMyLocationEnabled(true);

    locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
    locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, MIN_TIME, MIN_DISTANCE, this); 


}

@Override
public void onLocationChanged(Location location) {
    LatLng latLng = new LatLng(location.getLatitude(), location.getLongitude());
    CameraUpdate cameraUpdate = CameraUpdateFactory.newLatLngZoom(latLng, 15);
    mMap.animateCamera(cameraUpdate);
    locationManager.removeUpdates(this);

}

@Override
public void onProviderDisabled(String provider) {
    // TODO Auto-generated method stub

}

@Override
public void onProviderEnabled(String provider) {
    // TODO Auto-generated method stub

}

@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
    // TODO Auto-generated method stub

}

}

于 2013-02-14T20:37:30.647 に答える
7

次のように両方のパラメーターを設定することもできます。

mMap.moveCamera( CameraUpdateFactory.newLatLngZoom(new LatLng(21.000000, -101.400000) ,4) );

これにより、特定の位置とズームでマップが検索されます。マップの設定でこれを使用します。

于 2013-01-08T21:03:10.617 に答える
1

これを行う最も簡単な方法は、CancelableCallback を使用することです。最初のアクションが完了したことを確認してから、2 番目のアクションを呼び出す必要があります。

mMap.animateCamera(CameraUpdateFactory.newLatLngBounds(bounds, size.x, height, 0), new CancelableCallback() {

                @Override
                public void onFinish() {
                    CameraUpdate cu_scroll = CameraUpdateFactory.scrollBy(0, 500);
                    mMap.animateCamera(cu_scroll);
                }

                @Override
                public void onCancel() {
                }
            });
于 2014-10-28T11:22:50.783 に答える
0

@CommonsWareの答えは実際には機能しません。これが正しく機能していることがわかりました:

map.moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(-33.88,151.21), 15));
于 2016-01-21T18:45:57.283 に答える
-2
gmap.animateCamera(CameraUpdateFactory.newCameraPosition(new CameraPosition(new LatLng(9.491327, 76.571404), 10, 30, 0)));
于 2013-05-30T06:05:20.627 に答える