मेरे आवेदन से मानक Google मानचित्र आवेदन कैसे खोलें?


140

एक बार जब उपयोगकर्ता मेरे आवेदन में बटन दबाएगा, तो मैं मानक Google मानचित्र एप्लिकेशन खोलना और विशेष स्थान दिखाना चाहूंगा। मैं यह कैसे कर सकता हूं? (बिना उपयोग के com.google.android.maps.MapView)

जवाबों:


241

आपको Intentएक भू-यूआरआई के साथ एक ऑब्जेक्ट बनाना चाहिए :

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:0,0?q=address:।

संदर्भ: https://developer.android.com/guide/compenders/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 का उपयोग करें: स्ट्रिंग uri = "geo:" + lastLocation.getLatitude () + "," + lastLocation.getLongitude ()।
अगस्टी सैंचेज़

4
निर्देशों के लिए, अब एक नेविगेशन आशय google.navigation के साथ समर्थित है: q = अक्षांश, देशांतर: Uri gmmIntentUri = Uri.parse ("google.navigation: q =" + 12f "+", "+ 2f); इंटेंट mapIntent = new; आशय (Intent.ACTION_VIEW, gmmIntentUri); mapIntent.setPackage ("com.google.android.apps.maps"); startActivity (mapIntent);
डेविड थॉम्पसन

106

आप बस अपने URI के रूप में http://maps.google.com/maps का भी उपयोग कर सकते हैं

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

पूर्णता के लिए, यदि उपयोगकर्ता के पास मैप्स ऐप इंस्टॉल नहीं है, तो @NonyQ राज्यों के रूप में, ActivNotFoundException को पकड़ने के लिए एक अच्छा विचार है, तो हम मैप्स ऐप प्रतिबंध के बिना फिर से गतिविधि शुरू कर सकते हैं, हम बहुत यकीन कर सकते हैं क्योंकि इंटरनेट ब्राउजर इस 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

कृपया पोस्ट करें कि आपने कोड की पहली पंक्ति को किसके साथ बदल दिया है [वह रेखा जो स्ट्रिंग uri = string.format से शुरू होती है] ऐसा लगता है कि आपके पास मानकों में से एक के रूप में एक स्ट्रिंग है जो एक फ्लोट होना चाहिए
डेविड थॉम्पसन

अरे, जब मैं अक्षांश और देशांतर के साथ Google मानचित्र पर लेबल पास कर रहा हूं, तो मानचित्र एप्लिकेशन लेबल को पते में परिवर्तित करता है। क्या आप बता सकते हैं कि इस समस्या को कैसे हल किया जाए?
रोहन शर्मा

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

भू बिंदु पर एक लेबल सेट करने के लिए आप उपयोग करके अपनी जियो यूरी का विस्तार कर सकते हैं:

!!! लेकिन इस के साथ लापरवाह हो जियो-यूरी अभी भी विवादास्पद है 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" का भी उपयोग कर सकते हैं।
टोनी गिल

1
मैं कुछ इसी तरह की कोशिश कर रहा हूं, सिवाय इसके कि मैं निर्देशांक के साथ एक क्वेरी जोड़ता हूं ताकि मुझे एक गुब्बारा मिल जाए। मेरा कोड आपके पहले उदाहरण जैसा दिखता है। मैं अंग्रेजी लोकेल के साथ यूआरआई को प्रारूपित करता हूं, लेकिन जब मैं इसे अपने डिवाइस पर उपयोग करता हूं जो जर्मन लोकेल पर सेट होता है, तब भी Google मैप्स डॉट्स को कॉमा से बदल देता है ताकि मेरी क्वेरी काम न करे। जब मैंने डिवाइस का लोकेल अंग्रेजी US fe पर सेट किया तो यह पूरी तरह से ठीक काम करता है। मैं क्या कर सकता हूँ? इससे कोई फर्क नहीं पड़ता कि Google मैप्स क्वेरी स्ट्रिंग को फिर से बदलता है।
11

8

इस पृष्ठ को Google से जांचें:

http://developer.android.com/guide/appendix/g-app-intents.html

आप प्रपत्र के एक URI का उपयोग कर सकते हैं

geo:latitude,longitude

Google मानचित्र दर्शक को खोलने और उसे किसी स्थान पर इंगित करने के लिए।


6

कभी-कभी अगर भू के साथ कोई अनुप्रयोग जुड़ा नहीं है: प्रोटोकोल, आप इसे संभालने के लिए ActivNotFoundException प्राप्त करने के लिए कोशिश-कैच का उपयोग कर सकते हैं।

यह तब होता है जब आप कुछ एमुलेटर जैसे androVM का उपयोग करते हैं जो डिफ़ॉल्ट रूप से Google मानचित्र स्थापित नहीं होता है।


6

आप नीचे दिए गए कोड स्निपेट का भी उपयोग कर सकते हैं, इस तरीके से इरादे शुरू होने से पहले गूगल मैप्स के अस्तित्व की जाँच की जाती है।

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_HW3_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 Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.