Google지도 v2-내 위치 설정 및 확대


123

내 질문은 누구든지 내 위치와 확대보기를 모두 열기 위해 Google지도를 설정하는 방법을 알고 있습니까?

현재 메인 뷰는 완전히 축소 된 아프리카로 열립니다.

그래서 나는 지금 며칠을 찾고 있었고 내가 찾을 수있는 것은 다음과 같습니다.

1) 하나의 Google지도에서 두 가지 항목 (확대 및 내 위치로 이동)을 애니메이션 할 수 없습니까? 따라서 애니메이션을 설정하기 전에 확대 / 축소를 설정하는 방법을 알아낼 수 있다면이 문제가 해결 될 것입니다. 문제가되는 경향이 있습니다. 하나만 변경할 수 있지만 둘다는 아닙니다.

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;
}
}

답변:


205

하나의 Google지도에서 두 가지 항목 (확대 및 내 위치로 이동)을 애니메이션 할 수 없습니까?

코딩 관점에서 순차적으로 수행합니다.

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

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

여기서는 먼저 카메라를 이동 한 다음 둘 다 animateCamera()호출 일 수 있지만 카메라를 애니메이션 합니다. GoogleMap이것들이 하나의 이벤트로 통합 되는지 여부 는 너무 빨리 진행되므로 말할 수 없습니다. :-)

위의 코드를 가져온 샘플 프로젝트는 다음과 같습니다 .


죄송합니다.이 답변에는 결함이 있습니다. 참조 롭의 대답 하는 방법에 대한 진정한를 작성하여, 한 번에 이렇게하려면 CameraPosition다음 만드는 CameraUpdate것과을 CameraPosition.


허용되는 답변이되어서는 안됩니다. Mubeen1992 대답이 맞습니다.
Matthew

1
@AlanHaverty : 답변에서 링크하는 샘플 앱에는 해당 코드가 포함되어 있습니다. 완벽하게 잘 실행됩니다. 방금 Android 7.0을 실행하는 Nexus 9와 Android 6.0.1을 실행하는 Nexus 6P에서 테스트했습니다. 몇 년 동안 완벽하게 작동했습니다. 그것은 한 번에 그것들을 수행 하지 않으며 , 내 대답에서 언급했듯이 Rob 's가 우수한 대답이라는 데 동의합니다. 이 코드가 작동하지 않는다는 증거가 있다고 생각되면 샘플 프로젝트를 어딘가에 게시하십시오.
CommonsWare

@CommonsWare 죄송합니다. 코드로 테스트하는 동안 내지도의 왼쪽 상단 모서리가 lat lng로 설정되어있는 것 같습니다. 나는 당신이 .newLatLng ()가 한 일을 오해했다고 생각했습니다. 나는 그것이 왜 꺼져 있는지 잘 모르겠습니다. 내 쪽에서 다른 것이었을 것입니다 .API 문서가 귀하의 사례를 증명합니다. 귀하의 답변에 대해 기쁘게 생각하게되어 죄송합니다! 혼란을 피하기 위해 내 첫 번째 댓글을 삭제합니다. API 출처 : developers.google.com/android/reference/com/google/android/gms/…
Alan

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=ko-US#moving_the_camera


52

이것은 귀하의 질문에 대한 간단한 해결책입니다.

LatLng coordinate = new LatLng(lat, lng);
CameraUpdate yourLocation = CameraUpdateFactory.newLatLngZoom(coordinate, 5);
map.animateCamera(yourLocation);

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

}

}


7

다음과 같이 두 매개 변수를 모두 설정할 수도 있습니다.

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

이렇게하면 특정 위치에서지도를 찾고 확대 / 축소 할 수 있습니다. 내지도 설정에 이것을 사용합니다.


3

늦은 답변이지만 도움이 될 것이라고 생각합니다. 이 방법을 사용하십시오.

protected void zoomMapInitial(LatLng finalPlace, LatLng currenLoc) {
    try {
        int padding = 200; // Space (in px) between bounding box edges and view edges (applied to all four sides of the bounding box)
        LatLngBounds.Builder bc = new LatLngBounds.Builder();

        bc.include(finalPlace);
        bc.include(currenLoc);
        googleMap.moveCamera(CameraUpdateFactory.newLatLngBounds(bc.build(), padding));
    } catch (Exception e) {
        e.printStackTrace();
    }
}

지도를로드 한 후이 방법을 사용하십시오. 건배!


1

이를 수행하는 가장 간단한 방법은 CancelableCallback을 사용하는 것입니다. 첫 번째 작업이 완료되었는지 확인한 다음 두 번째 작업을 호출해야합니다.

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() {
                }
            });

0

@ CommonsWare의 대답은 실제로 작동하지 않습니다. 이것이 제대로 작동하고 있음을 발견했습니다.

map.moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(-33.88,151.21), 15));

0

1.지도를 표시하기 위해 레이아웃에 xml 코드를 추가합니다.

2. google maps api를 활성화 한 다음 아래에있는 api 키를 가져옵니다.

<fragment
                   android:id="@+id/map"
               android:name="com.google.android.gms.maps.MapFragment"
                    android:layout_width="match_parent"
                    android:value="ADD-API-KEY"
                    android:layout_height="250dp"
                    tools:layout="@layout/newmaplayout" />
        <ImageView
            android:id="@+id/transparent_image"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:src="@color/transparent" />

3. oncreate에이 코드를 추가합니다.

 MapFragment mapFragment = (MapFragment) getFragmentManager().findFragmentById(R.id.map);
    mapFragment.getMapAsync(UpadateProfile.this);

4. oncreate 후에이 코드를 추가합니다. 그런 다음 마커가있는 현재 위치에 액세스합니다.

@Override
public void onMapReady(GoogleMap rmap) {
    DO WHATEVER YOU WANT WITH GOOGLEMAP
    map = rmap;
    setUpMap();
}
public void setUpMap() {
    map.setMapType(GoogleMap.MAP_TYPE_HYBRID);
  map.setMyLocationEnabled(true);
    map.setTrafficEnabled(true);
    map.setIndoorEnabled(true);
    map.getCameraPosition();
    map.setBuildingsEnabled(true);
    map.getUiSettings().setZoomControlsEnabled(true);
    markerOptions = new MarkerOptions();
    markerOptions.title("Outlet Location");
    map.setOnMapClickListener(new GoogleMap.OnMapClickListener() {
        @Override
        public void onMapClick(LatLng point) {
            map.clear();
            markerOptions.position(point);
            map.animateCamera(CameraUpdateFactory.newLatLng(point));
            map.addMarker(markerOptions);
            String all_vals = String.valueOf(point);
            String[] separated = all_vals.split(":");
            String latlng[] = separated[1].split(",");
            MyLat = Double.parseDouble(latlng[0].trim().substring(1));
            MyLong = Double.parseDouble(latlng[1].substring(0,latlng[1].length()-1));
            markerOptions.title("Outlet Location");
            getLocation(MyLat,MyLong);
        }
    });
}
public void getLocation(double lat, double lng) {
    Geocoder geocoder = new Geocoder(UpadateProfile.this, Locale.getDefault());
    try {
        List<Address> addresses = geocoder.getFromLocation(lat, lng, 1);
   } catch (IOException e) {
         TODO Auto-generated catch block
        e.printStackTrace();
        Toast.makeText(this,e.getMessage(),Toast.LENGTH_SHORT).show();
    }
}
@Override
public void onLocationChanged(Location location) {
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
}
@Override
public void onProviderEnabled(String provider) {
}
@Override
public void onProviderDisabled(String provider) {
}

0

하나의 Google지도에서 두 가지 항목 (예 : 확대 및 내 위치로 이동)을 애니메이션 할 수 없습니다.
따라서 이동 및 애니메이션 카메라를 사용하여

googleMapVar.moveCamera(CameraUpdateFactory.newLatLng(LocLtdLgdVar));
googleMapVar.animateCamera(CameraUpdateFactory.zoomTo(10));

-2
gmap.animateCamera(CameraUpdateFactory.newCameraPosition(new CameraPosition(new LatLng(9.491327, 76.571404), 10, 30, 0)));
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.