Як відкрити стандартну програму Google Map із моєї програми?


140

Як тільки користувач натискає кнопку в моїй програмі, я хотів би відкрити стандартну програму Google Map і показати певне місцезнаходження. Як я можу це зробити? (без використання com.google.android.maps.MapView)

Відповіді:


241

Ви повинні створити Intentоб’єкт з гео-URI:

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

Якщо ви хочете , щоб вказати адресу, ви повинні використовувати іншу форму гео-URI: geo:0,0?q=address.

довідка: https://developer.android.com/guide/components/intents-common.html#Maps


1
Дякую, @Pixie! Який формат широти та довготи? Якщо я пройду, lat: 59.915494, lng: 30.409456він повертає неправильну позицію.
LA_

2
Гаразд, я знайшов проблему. String.format("geo:%f,%f", latitude, longitude)повернула рядок з запитом geo:59,915494,30,409456.
LA_

20
Це переміщує мене до місця, але він не кладе кулю. Я б хотів повітряну кульку, щоб користувач міг натиснути на неї, щоб отримати вказівки тощо.
Майк,

5
Не возиться зі String.format () для простого об'єднання рядків. Цей метод призначений лише для тексту інтерфейсу користувача, тому подання десяткової крапки може відрізнятися. Просто використовуйте оператор "+" або StringBuilder: String uri = "geo:" + lastLocation.getLatitude () + "," + lastLocation.getLongitude ().
Agustí Sánchez

4
Для напрямків намічений навігаційний намір тепер підтримується з google.navigation: q = широта, довгота: Uri gmmIntentUri = Uri.parse ("google.navigation: q =" + 12f "+", "+ 2f); Intent mapIntent = new Намір (Intent.ACTION_VIEW, gmmIntentUri); mapIntent.setPackage ("com.google.android.apps.maps"); startActivity (mapIntent);
Девід Томпсон

106

Ви також можете просто використовувати http://maps.google.com/maps як свій 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);

або ви можете переконатися, що використовується лише програма Карт Google, це запобігає появі фільтра намірів (діалогового вікна), використовуючи

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

так:

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

або ви можете додавати мітки до місцеположень, додаючи рядок всередині дужок після кожного набору координат, наприклад:

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

Щоб використовувати поточне місцезнаходження користувачів як вихідну точку (на жаль, я не знайшов способу позначити поточне місцеположення), тоді просто скиньте saddrпараметр так:

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

Для повноти, якщо користувачеві не встановлено додаток карт, тоді буде непоганою ідеєю зловити ActivityNotFoundException, як стверджує @TonyQ, тоді ми можемо знову розпочати діяльність без обмеження програми карти, ми можемо бути впевнені що ми ніколи не потрапимо до Toast наприкінці, оскільки Інтернет-браузер є дійсною програмою для запуску цієї URL-схеми.

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

Редагувати:

Для вказівок намічений навігаційний намір тепер підтримується за допомогою 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 не може відформатувати java.lang.Виключення аргументів для аргументів
Amitsharma

Будь ласка, опублікуйте те, що ви замінили перший рядок коду на [рядок, що починається з String uri = string.format] Схоже, у вас є рядок як один із параметрів, який має бути плаваючою
Девід Томпсон,

Ей, коли я передаю мітку на карти Google з широтою та довготою, додаток map перетворює мітку в адреси. Скажіть, будь ласка, що, як вирішити цю проблему?
Рохан Шарма

41

Використання String-формату допоможе, але ви повинні бути повною мірою з локальним словом. У Німеччині поплавок буде відокремлено комою, а не крапкою.

Використовуючи String.format("geo:%f,%f",5.1,2.1);мову англійською мовою, результат буде, "geo:5.1,2.1"але з німецькою мовою ви отримаєте"geo:5,1,2,1"

Ви повинні використовувати англійську мову, щоб запобігти такій поведінці.

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

Щоб встановити мітку на геоточку, ви можете розширити свій георесурс за допомогою:

!!! але будьте обережні з цим, гео-урі ще розробляється 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);

ви також можете використовувати "& t = h" проти "& t = m" для виклику в режимі супутникового або відображення шару карти.
tony gil

1
Я намагаюся щось подібне, за винятком того, що я додаю запит з координатами, щоб отримати повітряну кулю. Мій код виглядає точно як ваш перший приклад. Я форматую URI з англійською мовою, але коли я використовую його на своєму пристрої, встановленому на німецькій мові, Google Maps все одно замінює точки комами, щоб мій запит не працював. Коли я встановлюю локальний пристрій на англійську мову, це працює чудово. Що я можу зробити? Здається, незалежно від того, що Google Maps знову змінить рядок запиту.
kaolick


6

Іноді, якщо немає жодної програми, пов’язаної з geo: protocal, ви можете використовувати try-catch, щоб отримати ActivityNotFoundException, щоб обробити його.

Це трапляється, коли ви використовуєте такий емулятор, як androVM, який не встановлений google map за замовчуванням.


6

Ви також можете використовувати фрагмент коду нижче, таким чином перевіряється наявність google map перед запуском наміру.

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

Довідка: https://developers.google.com/maps/documentation/android-api/intents


1

Щоб перейти до місця з ПІН-кодом на ньому, використовуйте:

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

для без шпильки, використовуйте це в урі:

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

0

У мене є зразковий додаток, де я готую намір і просто передаю CITY_NAME у намірі активності маркера карт, яка в кінцевому підсумку обчислює довготу та широту геокодером за допомогою CITY_NAME.

Нижче наведено фрагмент коду початку роботи маркера карт та повної MapsMarkerActivity.

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

Термін дії посилань закінчується, тому я вставив повний код вище, але про всяк випадок, якщо ви хочете побачити повний код, його доступний за посиланням: https://github.com/gosaliajigar/CSC519/tree/master/CSC519_HW4_89753


0

Це написано в Котліні, він відкриє додаток карт, якщо він знайдеться, і поставить крапку, і дозволить розпочати подорож:

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

Замініть requireActivity()своїм Context.

Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.