アプリケーションから標準のGoogleマップアプリケーションを開く方法を教えてください。


140

ユーザーがアプリケーションのボタンを押したら、標準のGoogleマップアプリケーションを開き、特定の場所を表示します。どうすればできますか?(を使用せずにcom.google.android.maps.MapView

回答:


241

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

住所を指定する場合は、別の形式のgeo-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
これは私をその場所に移動させますが、そこには風船を置きません。ユーザーが気球をクリックして道順などを取得できるようにしたい
Mike

5
単純な文字列連結のためにString.format()をいじらないでください。このメソッドはUIテキストのみを対象としているため、小数点の表現が異なる場合があります。「+」演算子またはStringBuilderを使用するだけです:String uri = "geo:" + lastLocation.getLatitude()+ "、" + lastLocation.getLongitude()。
アグスティ・サンチェス

4
ルートについては、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

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

完全を期すために、ユーザーがマップアプリをインストールしていない場合は、@ TonyQが示すように、ActivityNotFoundExceptionをキャッチすることをお勧めします。マップアプリの制限なしでアクティビティを再開できます。インターネットブラウザはこの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.String引数の例外をフォーマットできません
Amitsharma

コードの最初の行を置き換えたものを投稿してください[String uri = string.formatで始まる行]フロートにする必要があるパラメーターの1つとして文字列があるようです
David Thompson

緯度と経度を含むGoogleマップにラベルを渡すと、マップアプリケーションはラベルを住所に変換します。この問題の解決方法を教えてください。
Rohan Sharma 2018年

41

文字列形式を使用すると効果がありますが、ロケールに完全に注意する必要があります。ドイツでは、フロートはポイントではなくカンマで区切られます。

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

ラベルをgeoポイントに設定するには、次を使用してgeo uriを拡張できます。

!!! しかし、これに注意してくださいgeo-uriはまだ開発中です 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マップでドットがカンマに置き換えられるため、クエリが機能しません。デバイスのロケールを英語US feに設定すると、問題なく動作します。私に何ができる?どのGoogleマップでもクエリ文字列が再び変更されるようです。
kaolick


6

geo:protocalに関連付けられているアプリケーションがない場合は、try-catchを使用してActivityNotFoundExceptionを取得し、それを処理できます。

デフォルトでgoogleマップがインストールされていないandroVMなどのエミュレータを使用すると発生します。


6

以下のコードスニペットを使用することもできます。この方法では、インテントが開始される前にGoogleマップの存在が確認されます。

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

PINが記載された場所に移動するには、次を使用します。

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

ピンなしの場合、これをURIで使用します。

 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

これはKotlinで記述されており、マップアプリが見つかった場合はそれを開いてポイントを配置し、旅行を開始できます。

  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

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.