繁体   English   中英

Android 方向 API ArrayIndexOutOfBoundsException

[英]Android Directions API ArrayIndexOutOfBoundsException

我正在使用谷歌方向 API。 在我将 TravelMode 设置为 BICYCLING 之前,一切正常。 在设置此属性之前,所有其他模式均有效。

我得到的错误是: onFailure: java.lang.ArrayIndexOutOfBoundsException: length=0; index=0 onFailure: java.lang.ArrayIndexOutOfBoundsException: length=0; index=0

为什么我会收到此错误?

这是代码:

    private void calculateDirections(Marker marker){
        Log.d(TAG, "calculateDirections: calculating directions.");

        com.google.maps.model.LatLng destination = new com.google.maps.model.LatLng(
                marker.getPosition().latitude,
                marker.getPosition().longitude
        );
        DirectionsApiRequest directions = new DirectionsApiRequest(mGeoApiContext);
        directions  .alternatives(true)
                    .origin(new com.google.maps.model.LatLng(
                        deviceLocation.getLatitude(),
                        deviceLocation.getLongitude()));


        // Set imperial and transport mode
        try {
            if (imperial) {
                directions.units(Unit.IMPERIAL);
                Log.d(TAG, "calculateDirections: imperial set true");
            }
            switch (transportMode){
                case "Drive":
                    directions.mode(TravelMode.DRIVING);
                    Log.d(TAG, "calculateDirections: travelMode: " + transportMode);
                    break;
                case "Walk":
                    directions.mode(TravelMode.WALKING);
                    Log.d(TAG, "calculateDirections: travelMode: " + transportMode);
                    break;
                case "Transit":
                    directions.mode(TravelMode.TRANSIT);
                    Log.d(TAG, "calculateDirections: travelMode: " + transportMode);
                    break;
                case "Cycle":
                    directions.mode(TravelMode.BICYCLING);
                    Log.d(TAG, "calculateDirections: travelMode: " + transportMode);
                    break;
            }
        } catch (Exception e){
            Log.e(TAG, "calculateDirections: imperial error: " + e.getMessage());
        }

        Log.d(TAG, "calculateDirections: destination: " + destination.toString());
        directions.destination(destination).setCallback(new PendingResult.Callback<DirectionsResult>() {
            @Override
            public void onResult(DirectionsResult result) {
                Log.d(TAG, "calculateDirections: onResult: routes: " + result.routes[0].toString());
                Log.d(TAG, "calculateDirections: onResult: duration: " + result.routes[0].legs[0].duration);
                Log.d(TAG, "calculateDirections: onResult: distance: " + result.routes[0].legs[0].distance);
                Log.d(TAG, "calculateDirections: onResult: geocodedWayPoints: " + result.geocodedWaypoints[0].toString());

                addPolyLinesToMap(result);
            }

            @Override
            public void onFailure(Throwable e) {
                Log.e(TAG, "calculateDirections: onFailure: " + e ); 

            }
        });
    }

这绝对是由于该旅行模式没有路线造成的(根据 Google Direction Api)。 在使用之前,您必须检查result.routes是否为 null。

public void onResult(DirectionsResult result) {
         if (result.routes!=null&&result.routes.length>0){
             //draw polylines
         } else{
             //no route found
         }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM