androide addmarker redirct a una posición incorrecta

votos
0

Si me pega la salida del lat de registro y la larga en los mapas de Google redirige a la ubicación correcta, pero animateCamera()está redirigiendo al lugar equivocado en Google Maps aplicación Android. ¡por favor ayuda!

 public void onSearch(View view){
            Log.i(******************,in search function);
            EditText locationTf = (EditText)findViewById(R.id.editText);
            String location = locationTf.getText().toString();
            Log.i(Entered location:,location);
            if(location != null || location.equals()){
                Log.i(In if statement,all condition are satisfied);
                Geocoder geocoder = new Geocoder(this);
                try {
                    addresses = geocoder.getFromLocationName(location,1);
                    Log.i(in try block,addresses.toString());
                } catch (IOException e) {
                    e.printStackTrace();
                }

                Address address = addresses.get(0);
                Log.i(after try catch block,address.toString());
                LatLng searchLatLng = new LatLng(address.getLatitude(),address.getLatitude());
                double logLat = address.getLatitude() ;
                double logLon = address.getLongitude() ;
                Log.i(********************,&&&&&&&&&&&&&&&&&&&&&&&&);
                Log.i(Double.toString(logLat),Double.toString(logLon));

                mMap.addMarker(new MarkerOptions().position(searchLatLng).title(Results));
                mMap.animateCamera(CameraUpdateFactory.newLatLng(searchLatLng));
               // mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(searchLatLng, 10));
            }
            else {

            }

        }
Publicado el 20/11/2017 a las 14:04
fuente por usuario
En otros idiomas...                            


1 respuestas

votos
0

Estás pasando 2 latitudes.

LatLng(address.getLatitude(),address.getLatitude());

En lugar de

LatLng(address.getLatitude(),address.getLongitude());
Respondida el 21/11/2017 a las 02:39
fuente por usuario

Cookies help us deliver our services. By using our services, you agree to our use of cookies. Learn more