Como abrir o aplicativo Google Map padrão do meu aplicativo?


140

Depois que o usuário pressionar o botão no meu aplicativo, eu gostaria de abrir o aplicativo padrão do Google Map e mostrar um local específico. Como eu posso fazer isso? (sem usar com.google.android.maps.MapView)

Respostas:


241

Você deve criar um Intentobjeto com um URI geográfico:

String uri = String.format(Locale.ENGLISH, "geo:%f,%f", latitude, longitude);
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
context.startActivity(intent);

Se você quiser especificar um endereço, você deve usar uma outra forma de geo-URI: geo:0,0?q=address.

referência: https://developer.android.com/guide/components/intents-common.html#Maps


1
Obrigado, @Pixie! Qual é o formato da latitude e longitude? Se eu passar, lat: 59.915494, lng: 30.409456ele retorna a posição errada.
La_

2
Ok, eu encontrei o problema. String.format("geo:%f,%f", latitude, longitude)voltou a corda com vírgulas: geo:59,915494,30,409456.
La_

20
Isso me move para o local, mas não coloca um balão lá. Eu adoraria um balão para que o usuário pode clicar nele para obter direcções etc.
Mike

5
Não mexa com String.format () para concatenação simples de String. Esse método é destinado apenas ao texto da interface do usuário; é por isso que a representação do ponto decimal pode variar. Basta usar o operador "+" ou StringBuilder: String uri = "geo:" + lastLocation.getLatitude () + "," + lastLocation.getLongitude ().
Agustí Sánchez

4
Para obter instruções, agora uma intenção de navegação é suportada com google.navigation: q = latitude, longitude: Uri gmmIntentUri = Uri.parse ("google.navigation: q =" + 12f "+", "+ 2f); Intent mapIntent = new Intent (Intent.ACTION_VIEW, gmmIntentUri); mapIntent.setPackage ("com.google.android.apps.maps"); startActivity (mapIntent);
David Thompson

105

Você também pode simplesmente usar http://maps.google.com/maps como seu URI

String uri = "http://maps.google.com/maps?saddr=" + sourceLatitude + "," + sourceLongitude + "&daddr=" + destinationLatitude + "," + destinationLongitude;
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
startActivity(intent);

ou você pode garantir que o aplicativo Google Maps seja usado apenas, isso impede que o filtro de intenções (diálogo) apareça, usando

intent.setPackage("com.google.android.apps.maps");

igual a:

String uri = "http://maps.google.com/maps?saddr=" + sourceLatitude + "," + sourceLongitude + "&daddr=" + destinationLatitude + "," + destinationLongitude;
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
intent.setPackage("com.google.android.apps.maps");
startActivity(intent);

ou você pode adicionar rótulos aos locais adicionando uma string entre parênteses após cada conjunto de coordenadas da seguinte forma:

String uri = "http://maps.google.com/maps?saddr=" + sourceLatitude + "," + sourceLongitude + "(" + "Home Sweet Home" + ")&daddr=" + destinationLatitude + "," + destinationLongitude + " (" + "Where the party is at" + ")";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
intent.setPackage("com.google.android.apps.maps");
startActivity(intent);

Para usar o local atual do usuário como ponto de partida (infelizmente não encontrei uma maneira de rotular o local atual), basta soltar o saddrparâmetro da seguinte maneira:

String uri = "http://maps.google.com/maps?daddr=" + destinationLatitude + "," + destinationLongitude + " (" + "Where the party is at" + ")";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
intent.setPackage("com.google.android.apps.maps");
startActivity(intent);

Por uma questão de integridade, se o usuário não tiver o aplicativo de mapas instalado, será uma boa ideia capturar a ActivityNotFoundException, como declara @TonyQ, podemos iniciar a atividade novamente sem a restrição do aplicativo de mapas, podemos ter certeza que nunca chegaremos ao Toast no final, já que um navegador da Internet é um aplicativo válido para iniciar esse esquema de URL também.

        String uri = "http://maps.google.com/maps?daddr=" + 12f + "," + 2f + " (" + "Where the party is at" + ")";
        Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
        intent.setPackage("com.google.android.apps.maps");
        try
        {
            startActivity(intent);
        }
        catch(ActivityNotFoundException ex)
        {
            try
            {
                Intent unrestrictedIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
                startActivity(unrestrictedIntent);
            }
            catch(ActivityNotFoundException innerEx)
            {
                Toast.makeText(this, "Please install a maps application", Toast.LENGTH_LONG).show();
            }
        }

EDITAR:

Para obter instruções, agora uma intenção de navegação é suportada com google.navigation

Uri navigationIntentUri = Uri.parse("google.navigation:q=" + 12f + "," + 2f);
Intent mapIntent = new Intent(Intent.ACTION_VIEW, navigationIntentUri);
mapIntent.setPackage("com.google.android.apps.maps");
startActivity(mapIntent);

java.util.IllegalFormatConversionException:% f não pode formatar java.lang.String argumentos exceções
Amitsharma

Por favor, poste o que você substituiu a primeira linha de código com [a linha que começa com corda uri = string.format] Parece que você tem uma string como um dos parâmetros que devem ser uma bóia
David Thompson

Ei, quando estou passando o rótulo para o Google Maps com latitude e longitude, o aplicativo de mapa converte o rótulo nos endereços. Você pode dizer-lhe como resolver este problema?
Rohan Sharma

41

Usar o formato String ajudará, mas você deve ter cuidado com o código do idioma. Na Alemanha, o flutuador será separado por vírgula, em vez de um ponto.

Usando o String.format("geo:%f,%f",5.1,2.1);código do idioma inglês, o resultado será, "geo:5.1,2.1"mas com o código do idioma alemão, você obterá"geo:5,1,2,1"

Você deve usar o código de idioma inglês para impedir esse comportamento.

String uri = String.format(Locale.ENGLISH, "geo:%f,%f", latitude, longitude);
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
context.startActivity(intent);

Para definir um rótulo para o ponto geográfico, você pode estender sua localização geográfica usando:

!!! mas tenha cuidado com isso, o geo-uri ainda está em desenvolvimento http://tools.ietf.org/html/draft-mayrhofer-geo-uri-00

String uri = String.format(Locale.ENGLISH, "geo:%f,%f?z=%d&q=%f,%f (%s)", 
                           latitude, longitude, zoom, latitude, longitude, label);
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
context.startActivity(intent);

você também pode usar "& t = h" versus "& t = m" para chamar na exibição da camada de satélite ou mapa.
gil tony

1
Estou tentando algo semelhante, exceto que eu adiciono uma consulta com as coordenadas para obter um balão. Meu código se parece exatamente com o seu primeiro exemplo. Eu formato o URI com localidade em inglês, mas quando o uso no meu dispositivo definido como localidade alemã, o Google Maps ainda substitui pontos por vírgulas para que minha consulta não funcione. Quando defino o código do idioma do dispositivo para inglês americano, ele funciona perfeitamente. O que eu posso fazer? Parece que não importa o que o Google Maps altere a sequência de consultas novamente.
kaolick


6

Às vezes, se não houver nenhum aplicativo associado ao geo: protocal, você pode usar o try-catch para obter o ActivityNotFoundException para lidar com isso.

Isso acontece quando você usa algum emulador como o androVM, que não está instalado no Google Map por padrão.


6

Você também pode usar o snippet de código abaixo. Dessa forma, a existência do google maps é verificada antes do início da intenção.

Uri gmmIntentUri = Uri.parse(String.format(Locale.ENGLISH,"geo:%f,%f", latitude, longitude));
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
mapIntent.setPackage("com.google.android.apps.maps");
if (mapIntent.resolveActivity(getPackageManager()) != null) {
    startActivity(mapIntent);
}

Referência: https://developers.google.com/maps/documentation/android-api/intents


1

Para ir para o local COM PIN, use:

String uri = "http://maps.google.com/maps?q=loc:" + destinationLatitude + "," + destinationLongitude;
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
intent.setPackage("com.google.android.apps.maps");
startActivity(intent);

para sem pino, use isto em uri:

 String uri = "geo:" + destinationLatitude + "," + destinationLongitude;

0

Eu tenho um aplicativo de exemplo onde eu preparo a intenção e apenas passo o CITY_NAME na intenção para a atividade do marcador de mapas que, eventualmente, calcula a longitude e latitude pelo geocoder usando CITY_NAME.

Abaixo está o snippet de código para iniciar a atividade do marcador de mapas e a MapsMarkerActivity completa.

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) {
        return true;
    } else if (id == R.id.action_refresh) {
        Log.d(APP_TAG, "onOptionsItemSelected Refresh selected");
        new MainActivityFragment.FetchWeatherTask().execute(CITY, FORECAS_DAYS);
        return true;
    } else if (id == R.id.action_map) {
        Log.d(APP_TAG, "onOptionsItemSelected Map selected");
        Intent intent = new Intent(this, MapsMarkerActivity.class);
        intent.putExtra("CITY_NAME", CITY);
        startActivity(intent);
        return true;
    }

    return super.onOptionsItemSelected(item);
}

public class MapsMarkerActivity extends AppCompatActivity
        implements OnMapReadyCallback {

    private String cityName = "";

    private double longitude;

    private double latitude;

    static final int numberOptions = 10;

    String [] optionArray = new String[numberOptions];

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        // Retrieve the content view that renders the map.
        setContentView(R.layout.activity_map);
        // Get the SupportMapFragment and request notification
        // when the map is ready to be used.
        SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
                .findFragmentById(R.id.map);
        mapFragment.getMapAsync(this);

        // Test whether geocoder is present on platform
        if(Geocoder.isPresent()){
            cityName = getIntent().getStringExtra("CITY_NAME");
            geocodeLocation(cityName);
        } else {
            String noGoGeo = "FAILURE: No Geocoder on this platform.";
            Toast.makeText(this, noGoGeo, Toast.LENGTH_LONG).show();
            return;
        }
    }

    /**
     * Manipulates the map when it's available.
     * The API invokes this callback 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 receives a prompt to install
     * Play services inside the SupportMapFragment. The API invokes this method after the user has
     * installed Google Play services and returned to the app.
     */
    @Override
    public void onMapReady(GoogleMap googleMap) {
        // Add a marker in Sydney, Australia,
        // and move the map's camera to the same location.
        LatLng sydney = new LatLng(latitude, longitude);
        // If cityName is not available then use
        // Default Location.
        String markerDisplay = "Default Location";
        if (cityName != null
                && cityName.length() > 0) {
            markerDisplay = "Marker in " + cityName;
        }
        googleMap.addMarker(new MarkerOptions().position(sydney)
                .title(markerDisplay));
        googleMap.moveCamera(CameraUpdateFactory.newLatLng(sydney));
    }

    /**
     * Method to geocode location passed as string (e.g., "Pentagon"), which
     * places the corresponding latitude and longitude in the variables lat and lon.
     *
     * @param placeName
     */
    private void geocodeLocation(String placeName){

        // Following adapted from Conder and Darcey, pp.321 ff.
        Geocoder gcoder = new Geocoder(this);

        // Note that the Geocoder uses synchronous network access, so in a serious application
        // it would be best to put it on a background thread to prevent blocking the main UI if network
        // access is slow. Here we are just giving an example of how to use it so, for simplicity, we
        // don't put it on a separate thread.  See the class RouteMapper in this package for an example
        // of making a network access on a background thread. Geocoding is implemented by a backend
        // that is not part of the core Android framework, so we use the static method
        // Geocoder.isPresent() to test for presence of the required backend on the given platform.

        try{
            List<Address> results = null;
            if(Geocoder.isPresent()){
                results = gcoder.getFromLocationName(placeName, numberOptions);
            } else {
                Log.i(MainActivity.APP_TAG, "No Geocoder found");
                return;
            }
            Iterator<Address> locations = results.iterator();
            String raw = "\nRaw String:\n";
            String country;
            int opCount = 0;
            while(locations.hasNext()){
                Address location = locations.next();
                if(opCount == 0 && location != null){
                    latitude = location.getLatitude();
                    longitude = location.getLongitude();
                }
                country = location.getCountryName();
                if(country == null) {
                    country = "";
                } else {
                    country =  ", " + country;
                }
                raw += location+"\n";
                optionArray[opCount] = location.getAddressLine(0)+", "
                        +location.getAddressLine(1)+country+"\n";
                opCount ++;
            }
            // Log the returned data
            Log.d(MainActivity.APP_TAG, raw);
            Log.d(MainActivity.APP_TAG, "\nOptions:\n");
            for(int i=0; i<opCount; i++){
                Log.i(MainActivity.APP_TAG, "("+(i+1)+") "+optionArray[i]);
            }
            Log.d(MainActivity.APP_TAG, "latitude=" + latitude + ";longitude=" + longitude);
        } catch (Exception e){
            Log.d(MainActivity.APP_TAG, "I/O Failure; do you have a network connection?",e);
        }
    }
}

Os links expiram, então colei o código completo acima, mas, caso deseje ver o código completo, ele está disponível em: https://github.com/gosaliajigar/CSC519/tree/master/CSC519_HW4_89753


0

Como está escrito em Kotlin, ele abrirá o aplicativo de mapas, se for encontrado, posicionar o ponto e permitir que você inicie a viagem:

  val gmmIntentUri = Uri.parse("http://maps.google.com/maps?daddr=" + adapter.getItemAt(position).latitud + "," + adapter.getItemAt(position).longitud)
        val mapIntent = Intent(Intent.ACTION_VIEW, gmmIntentUri)
        mapIntent.setPackage("com.google.android.apps.maps")
        if (mapIntent.resolveActivity(requireActivity().packageManager) != null) {
            startActivity(mapIntent)
        }

Substitua requireActivity()por seu Context.

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.