2016-04-16 4 views
7

Ich versuche, den aktuellen Standort des Benutzers auf der Google Map innerhalb meiner App anzuzeigen, aber ich möchte nicht den Speicherort aktualisieren, wie der Benutzer bewegt. Sein anfänglicher Standort sollte aufgezeichnet und gezeigt werden, bis er die App schließt. Ich habe den folgenden Code für diese geschrieben:Holen Sie sich den aktuellen Standort in onMapReady in Android mit google locations API

private GoogleMap mMap; 
protected GoogleApiClient mGoogleApiClient; 
Location mLastLocation; 
double lat =0, lng=0; 

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

    // Obtain the SupportMapFragment and get notified when the map is ready to be used. 
    SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager() 
      .findFragmentById(R.id.map); 
    mapFragment.getMapAsync(this); 


} 

private void buildGoogleApiClient() { 
    mGoogleApiClient = new GoogleApiClient.Builder(this) 
      .addConnectionCallbacks(this) 
      .addOnConnectionFailedListener(this) 
      .addApi(LocationServices.API) 
      .build(); 
} 


/** 
* Manipulates the map once available. 
* This callback is triggered when the map is ready to be used. 
* This is where we can add markers or lines, add listeners or move the camera. In this case, 
* we just add a marker near Sydney, Australia. 
* If Google Play services is not installed on the device, the user will be prompted to install 
* it inside the SupportMapFragment. This method will only be triggered once the user has 
* installed Google Play services and returned to the app. 
*/ 
@Override 
public void onMapReady(GoogleMap googleMap) { 
    mMap = googleMap; 

    // Add a marker in Sydney and move the camera 
    mMap.setMyLocationEnabled(true); 

    LatLng loc = new LatLng(lat, lng); 
    mMap.addMarker(new MarkerOptions().position(loc).title("New Marker")); 
    mMap.moveCamera(CameraUpdateFactory.newLatLng(loc)); 
} 

@Override 
public void onConnected(Bundle bundle) { 
    mLastLocation = LocationServices.FusedLocationApi.getLastLocation(
      mGoogleApiClient); 
    if (mLastLocation != null) { 
     lat = mLastLocation.getLatitude(); 
     lng = mLastLocation.getLongitude(); 
    } 
} 

@Override 
protected void onStart() { 
    super.onStart(); 

    mGoogleApiClient.connect(); 
} 

Das Problem mit diesem Code ist, dass ich die lat, lng nach der onMapReady Funktion bereits beendet Ausführung zu bekommen. Ich dachte, dass eine der Möglichkeiten, dies zu korrigieren wäre, erstellen Sie eine AsyncTask, um sicherzustellen, dass die Standortdaten vor der Karte abgerufen werden. Ich versuche dies jedoch so zu implementieren, dass AsyncTask nicht verwendet wird.

Antwort

6

einfach den Code bewegen, dass der Marker von onMapReady() zu onConnected() erzeugt, und bewegen Sie den Anruf buildGoogleApiClient() Anruf onCreate()-onMapReady():

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

    // Obtain the SupportMapFragment and get notified when the map is ready to be used. 
    SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager() 
      .findFragmentById(R.id.map); 
    mapFragment.getMapAsync(this); 

} 


@Override 
public void onMapReady(GoogleMap googleMap) { 
    mMap = googleMap; 

    // Add a marker in Sydney and move the camera 
    mMap.setMyLocationEnabled(true); 

    //add this here: 
    buildGoogleApiClient(); 

    //LatLng loc = new LatLng(lat, lng); 
    //mMap.addMarker(new MarkerOptions().position(loc).title("New Marker")); 
    //mMap.moveCamera(CameraUpdateFactory.newLatLng(loc)); 
} 

@Override 
public void onConnected(Bundle bundle) { 
    mLastLocation = LocationServices.FusedLocationApi.getLastLocation(
      mGoogleApiClient); 
    if (mLastLocation != null) { 
     lat = mLastLocation.getLatitude(); 
     lng = mLastLocation.getLongitude(); 

     LatLng loc = new LatLng(lat, lng); 
     mMap.addMarker(new MarkerOptions().position(loc).title("New Marker")); 
     mMap.moveCamera(CameraUpdateFactory.newLatLng(loc)); 
    } 
} 

Obwohl, beachten Sie, dass Sie häufig aus dem Aufruf von getLastLocation() null erhalten werden. Sie können requestLocationUpdates() verwenden und removeLocationUpdates() anrufen, wenn der erste Ort kommt. Werfen Sie einen Blick auf this answer, es hat ein komplettes Beispiel genau das, was Sie versuchen zu tun.