นําทางในจุดหมายเดียว

ทำตามคำแนะนำนี้เพื่อวางแผนเส้นทางภายในแอปโดยใช้ Navigation SDK สำหรับ Android คำแนะนำนี้ถือว่าคุณได้ผสานรวม Navigation SDK เข้ากับแอปแล้วตามที่อธิบายไว้ใน หัวข้อตั้งค่าโปรเจ็กต์

สรุป

  1. เพิ่มองค์ประกอบ UI ลงในแอป ไม่ว่าจะเป็น Fragment การนำทางหรือ View การนำทาง องค์ประกอบ UI นี้จะเพิ่มแผนที่แบบอินเทอร์แอกทีฟและ UI การนำทางแบบเลี้ยวต่อเลี้ยวลงในกิจกรรม
  2. ขอสิทธิ์เข้าถึงตำแหน่ง แอปต้องขอสิทธิ์เข้าถึงตำแหน่งเพื่อระบุตำแหน่งของอุปกรณ์
  3. เริ่มต้น SDK โดยใช้คลาส NavigationApi
  4. ตั้งค่าปลายทางและควบคุมการนำทางแบบเลี้ยวต่อเลี้ยวโดยใช้ Navigator คลาส ซึ่งมี 3 ขั้นตอนดังนี้

    • ตั้งค่าปลายทางโดยใช้ setDestination().
    • เริ่มการนำทางด้วย startGuidance().
    • ใช้ getSimulator() เพื่อจำลองความคืบหน้าของยานพาหนะตามเส้นทาง สำหรับการทดสอบ การแก้ไขข้อบกพร่อง และการสาธิตแอป
  5. สร้างและเรียกใช้แอป

ดูรหัส

เพิ่มองค์ประกอบ UI ลงในแอป

ส่วนนี้ครอบคลุม 2 วิธีที่คุณสามารถเพิ่มแผนที่แบบอินเทอร์แอกทีฟและ UI สำหรับแสดงการนำทางแบบเลี้ยวต่อเลี้ยว ในกรณีส่วนใหญ่ เราขอแนะนำให้ใช้ SupportNavigationFragment, ซึ่งเป็น Wrapper สำหรับ NavigationView, แทนการโต้ตอบกับ NavigationView โดยตรง ดูข้อมูลเพิ่มเติมได้ที่ แนวทางปฏิบัติแนะนำสำหรับการโต้ตอบกับแผนที่การนำทาง

SupportNavigationFragment เป็นคอมโพเนนต์ UI ที่แสดงเอาต์พุตภาพของการนำทาง ซึ่งรวมถึงแผนที่แบบอินเทอร์แอกทีฟและคำแนะนำแบบเลี้ยวต่อเลี้ยว คุณสามารถประกาศ Fragment ในไฟล์เลย์เอาต์ XML ได้ดังที่แสดงด้านล่าง

<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
    android:name="com.google.android.libraries.navigation.SupportNavigationFragment"
    android:id="@+id/navigation_fragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

หรือคุณจะสร้าง Fragment แบบเป็นโปรแกรมก็ได้ตามที่อธิบายไว้ใน เอกสารประกอบของ Android, โดยใช้ FragmentActivity.getSupportFragmentManager()

คอมโพเนนต์ UI สำหรับแสดงแผนที่เพื่อการ นำทางยังมีให้ใช้งานเป็น NavigationViewด้วย ซึ่งเป็นอีกทางเลือกหนึ่งแทน Fragment

ขอสิทธิ์เข้าถึงตำแหน่ง

ส่วนนี้แสดงวิธีขอสิทธิ์เข้าถึงตำแหน่งที่แม่นยำ ดูรายละเอียดเพิ่มเติมได้ในคำแนะนำเกี่ยวกับ สิทธิ์ของ Android

  1. เพิ่มสิทธิ์เป็นองค์ประกอบย่อยขององค์ประกอบ <manifest> ในไฟล์ Manifest ของ Android:

    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.example.navsdksingledestination">
        <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    </manifest>
    
  2. ขอสิทธิ์รันไทม์ในแอปเพื่อให้ผู้ใช้มีโอกาสให้หรือปฏิเสธสิทธิ์เข้าถึงตำแหน่ง โค้ดต่อไปนี้จะตรวจสอบว่าผู้ใช้ให้สิทธิ์เข้าถึงตำแหน่งที่แม่นยำแล้วหรือไม่ หากยังไม่ได้ให้สิทธิ์ ระบบจะขอสิทธิ์

        if (ContextCompat.checkSelfPermission(this.getApplicationContext(),
                android.Manifest.permission.ACCESS_FINE_LOCATION)
                    == PackageManager.PERMISSION_GRANTED) {
            mLocationPermissionGranted = true;
        } else {
            ActivityCompat.requestPermissions(this,
                    new String[] { android.Manifest.permission.ACCESS_FINE_LOCATION },
                    PERMISSIONS_REQUEST_ACCESS_FINE_LOCATION);
        }
    
        if (!mLocationPermissionGranted) {
            displayMessage("Error loading Navigation SDK: "
                    + "The user has not granted location permission.");
            return;
        }
    
  3. ลบล้างการเรียกกลับ onRequestPermissionsResult() เพื่อจัดการผลลัพธ์ของคำขอสิทธิ์

        @Override
        public void onRequestPermissionsResult(int requestCode, @NonNull String permissions[],
                                               @NonNull int[] grantResults) {
            mLocationPermissionGranted = false;
            switch (requestCode) {
                case PERMISSIONS_REQUEST_ACCESS_FINE_LOCATION: {
                    // If request is canceled, the result arrays are empty.
                    if (grantResults.length > 0
                            && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
                        mLocationPermissionGranted = true;
                    }
                }
            }
        }
    

เริ่มต้น Navigation SDK

คลาส NavigationApi มีตรรกะการเริ่มต้นที่ให้สิทธิ์แอปของคุณในการใช้การนำทางของ Google ส่วนนี้ครอบคลุมวิธีเริ่มต้น Navigator รวมถึงการกำหนดค่าอื่นๆ ที่คุณเปิดใช้สำหรับแอปได้

  1. เริ่มต้น Navigation SDK และลบล้างการเรียกกลับ onNavigatorReady() เพื่อเริ่มการนำทางเมื่อ Navigator พร้อม

  2. ไม่บังคับ กำหนดค่าแอปเพื่อให้การแจ้งเตือนคำแนะนำและบริการเบื้องหลังปิดลงเมื่อผู้ใช้ปิดแอปจากอุปกรณ์ การเลือกนี้ขึ้นอยู่กับโมเดลธุรกิจของคุณ คุณอาจต้องการใช้ลักษณะการทำงานเริ่มต้นของ Navigator ซึ่งจะแสดงคำแนะนำแบบเลี้ยวต่อเลี้ยวและการอัปเดตตำแหน่งต่อไปแม้ว่าผู้ใช้จะปิดแอปแล้วก็ตาม หากต้องการปิดการนำทางและการอัปเดตตำแหน่งเมื่อผู้ใช้ปลายทางปิดแอป คุณจะต้องใช้การกำหนดค่านี้

  3. ไม่บังคับ เปิดใช้ข้อจำกัดด้านถนนในประเทศที่รองรับ ตั้งค่าเลขหลักสุดท้ายของป้ายทะเบียน คุณต้องเรียกใช้ฟังก์ชันนี้เพียงครั้งเดียว โดยคำขอเส้นทางที่ตามมาจะใช้ค่านี้ต่อไป ฟังก์ชันนี้ใช้ได้ในภูมิภาคที่รองรับเท่านั้น ดูประเทศที่รองรับ Navigation SDK

        NavigationApi.getNavigator(this, new NavigationApi.NavigatorListener() {
                    /**
                     * Sets up the navigation UI when the navigator is ready for use.
                     */
                    @Override
                    public void onNavigatorReady(Navigator navigator) {
                        displayMessage("Navigator ready.");
                        mNavigator = navigator;
                        mNavFragment = (NavigationFragment) getFragmentManager()
                                .findFragmentById(R.id.navigation_fragment);
    
                        // Optional. Disable the guidance notifications and shut down the app
                        // and background service when the user closes the app.
                        // mNavigator.setTaskRemovedBehavior(Navigator.TaskRemovedBehavior.QUIT_SERVICE)
    
                        // Optional. Set the last digit of the car's license plate to get
                        // route restrictions for supported countries.
                        // mNavigator.setLicensePlateRestrictionInfo(getLastDigit(), "BZ");
    
                        // Set the camera to follow the device location with 'TILTED' driving view.
                        mNavFragment.getCamera().followMyLocation(Camera.Perspective.TILTED);
    
                        // Set the travel mode (DRIVING, WALKING, CYCLING, TWO_WHEELER, or TAXI).
                        mRoutingOptions = new RoutingOptions();
                        mRoutingOptions.travelMode(RoutingOptions.TravelMode.DRIVING);
    
                        // Navigate to a place, specified by Place ID.
                        navigateToPlace(SYDNEY_OPERA_HOUSE, mRoutingOptions);
                    }
    
                    /**
                     * Handles errors from the Navigation SDK.
                     * @param errorCode The error code returned by the navigator.
                     */
                    @Override
                    public void onError(@NavigationApi.ErrorCode int errorCode) {
                        switch (errorCode) {
                            case NavigationApi.ErrorCode.NOT_AUTHORIZED:
                                displayMessage("Error loading Navigation SDK: Your API key is "
                                        + "invalid or not authorized to use the Navigation SDK.");
                                break;
                            case NavigationApi.ErrorCode.TERMS_NOT_ACCEPTED:
                                displayMessage("Error loading Navigation SDK: User did not accept "
                                        + "the Navigation Terms of Use.");
                                break;
                            case NavigationApi.ErrorCode.NETWORK_ERROR:
                                displayMessage("Error loading Navigation SDK: Network error.");
                                break;
                            case NavigationApi.ErrorCode.LOCATION_PERMISSION_MISSING:
                                displayMessage("Error loading Navigation SDK: Location permission "
                                        + "is missing.");
                                break;
                            default:
                                displayMessage("Error loading Navigation SDK: " + errorCode);
                        }
                    }
                });
    

ตั้งค่าปลายทาง

คลาส Navigator ให้การควบคุมการกำหนดค่า การเริ่มต้น และการหยุดการเดินทางด้วยการนำทาง

ใช้ Navigator ที่ได้รับในส่วนก่อนหน้าเพื่อตั้งค่า Waypoint ปลายทางสำหรับการเดินทางนี้ หลังจากคำนวณเส้นทางแล้ว SupportNavigationFragment จะแสดงเส้นประกอบที่แสดงเส้นทางบนแผนที่ และตัวทำเครื่องหมายที่ ปลายทาง

```none
    private void navigateToPlace(String placeId, RoutingOptions travelMode) {
        Waypoint destination;
        try {
            destination = Waypoint.builder().setPlaceIdString(placeId).build();
        } catch (Waypoint.UnsupportedPlaceIdException e) {
            displayMessage("Error starting navigation: Place ID is not supported.");
            return;
        }

        // Create a future to await the result of the asynchronous navigator task.
        ListenableResultFuture<Navigator.RouteStatus> pendingRoute =
                mNavigator.setDestination(destination, travelMode);

        // Define the action to perform when the SDK has determined the route.
        pendingRoute.setOnResultListener(
                new ListenableResultFuture.OnResultListener<Navigator.RouteStatus>() {
                    @Override
                    public void onResult(Navigator.RouteStatus code) {
                        switch (code) {
                            case OK:
                                // Hide the toolbar to maximize the navigation UI.
                                if (getActionBar() != null) {
                                    getActionBar().hide();
                                }

                                // Enable voice audio guidance (through the device speaker).
                                mNavigator.setAudioGuidance(
                                        Navigator.AudioGuidance.VOICE_ALERTS_AND_GUIDANCE);

                                // Simulate vehicle progress along the route for demo/debug builds.
                                if (BuildConfig.DEBUG) {
                                    mNavigator.getSimulator().simulateLocationsAlongExistingRoute(
                                            new SimulationOptions().speedMultiplier(5));
                                }

                                // Start turn-by-turn guidance along the current route.
                                mNavigator.startGuidance();
                                break;
                            // Handle error conditions returned by the navigator.
                            case NO_ROUTE_FOUND:
                                displayMessage("Error starting navigation: No route found.");
                                break;
                            case NETWORK_ERROR:
                                displayMessage("Error starting navigation: Network error.");
                                break;
                            case ROUTE_CANCELED:
                                displayMessage("Error starting navigation: Route canceled.");
                                break;
                            default:
                                displayMessage("Error starting navigation: "
                                        + String.valueOf(code));
                        }
                    }
                });
    }
```

สร้างและเรียกใช้แอป

  1. เชื่อมต่ออุปกรณ์ Android กับคอมพิวเตอร์ ทำตามวิธีการของ Android Studio เกี่ยวกับวิธีเรียกใช้แอปในอุปกรณ์ฮาร์ดแวร์ หรือคุณจะกำหนดค่าอุปกรณ์เสมือน Android โดยใช้ Android Virtual Device (AVD) Manager ก็ได้ เมื่อเลือกโปรแกรมจำลอง ให้เลือกอิมเมจที่มี Google API
  2. ใน Android Studio ให้คลิกตัวเลือกเมนูเรียกใช้ หรือไอคอนปุ่มเล่น เลือกอุปกรณ์ตามที่ระบบแจ้ง

เคล็ดลับในการปรับปรุงประสบการณ์ของผู้ใช้

  • ผู้ใช้ต้องยอมรับข้อกำหนดในการให้บริการการนำทางของ Google ก่อนจึงจะใช้การนำทางได้ คุณต้องยอมรับเพียงครั้งเดียว โดยค่าเริ่มต้น SDK จะแจ้งให้ยอมรับเมื่อมีการเรียกใช้ Navigator เป็นครั้งแรก หากต้องการ คุณสามารถทริกเกอร์กล่องโต้ตอบข้อกำหนดในการให้บริการการนำทาง ในขั้นตอนแรกๆ ของโฟลว์ UX ของแอป เช่น ระหว่างการลงชื่อสมัครใช้หรือลงชื่อเข้าใช้ โดยใช้ TermsAndConditionsCheckOption
  • ใช้รหัสสถานที่เพื่อเริ่มต้น Waypoint แทนพิกัดละติจูด/ลองจิจูดเพื่อปรับปรุงคุณภาพการนำทางและความแม่นยำของเวลาถึงโดยประมาณอย่างมาก
  • ตัวอย่างนี้ได้ Waypoint ปลายทางจากรหัสสถานที่ที่เฉพาะเจาะจงสำหรับโรงอุปรากรซิดนีย์ คุณสามารถใช้ เครื่องมือค้นหารหัสสถานที่ เพื่อรับรหัสสถานที่สำหรับสถานที่อื่นๆ ที่เฉพาะเจาะจง