2013-10-26 2 views

답변

0
@Override 
    public void onLocationChanged(Location location) { 
     LatLng latLng = new LatLng(location.getLatitude(), location.getLongitude()); 

     googleMap.animateCamera(CameraUpdateFactory.newLatLngZoom(latLng, 15)); 
     googleMap.addMarker(new MarkerOptions().position(latLng).title("YOUR TITLE"); 
     locationManager.removeUpdates(this); 
    } 

는 ".addMarker"

을 시도 타일 공급자의 위치를 ​​설정하는 안드로이드 맵
enter image description here

나는 정의 tileproviver implment하는 방법 두 가지 질문
1가
+1

마커에 대해 묻지 않고 있습니다. 이미지를 오버레이해야합니다. – SathMK

관련 문제