如何在Android中使用折线显示轨道路线

时间:2018-11-21 18:15:27

标签: android google-maps google-polyline

我正在开发一个公交车跟踪应用程序,在其中我可以使用来自服务器的服务来获取位置。现在,我要显示公交车运动并绘制一条适当的折线。我实现了其中的一部分,但面临两个主要问题:

  1. 每次都显示总线标记,但不会将其删除。因此,仍然存在公交车的旧足迹。尽管到达目的地,但我看到了许多公交车图标。

  2. 我可以通过合并纬度和经度来绘制折线,但有时会显示一条直线。

我为此附上了两个屏幕截图。 enter image description here

enter image description here 我使用的代码在这里:

private void setmMap() {
    progressDialog.show();

    if (broadcastReceiver == null)
        broadcastReceiver = new BroadcastReceiver() {
            @Override
            public void onReceive(Context context, Intent intent) {
                Log.d("Testing", "inside the setmap");
                 // show progress dialog
                try {
                    double latitude = intent.getDoubleExtra("lat", 22.560214);
                    double longitude = intent.getDoubleExtra("longi", 22.560214);
                    Log.d("SetMap", intent.getExtras().getString("time"));
                    LatLng startLocation = new LatLng(latitude, longitude);
                    m.setPosition(startLocation);
                    points.add(startLocation);

                    PolylineOptions options = new PolylineOptions().width(5).color(Color.BLUE).geodesic(true);
                    for (int i = 0; i < points.size(); i++) {
                        LatLng point = points.get(i);
                        options.add(point);
                    }
                    line = mMap.addPolyline(options); //add Polyline
                    mMap.moveCamera(CameraUpdateFactory.newLatLng(startLocation));
                    mMap.animateCamera(CameraUpdateFactory.newLatLngZoom(startLocation, 15));
                    progressDialog.cancel();
                    Geocoder geocoder;
                    List<Address> addresses;
                    geocoder = new Geocoder(context, Locale.getDefault());
                    addresses = geocoder.getFromLocation(latitude, longitude, 1);

                    String address = addresses.get(0).getAddressLine(0); // If any additional address line present than only, check with max available address lines by getMaxAddressLineIndex()
                    String city = addresses.get(0).getLocality();
                    String state = addresses.get(0).getAdminArea();
                    String country = addresses.get(0).getCountryName();
                    String postalCode = addresses.get(0).getPostalCode();
                    String strLoc = "Latitude:: "+latitude+"  ::Longitude::  "+longitude+"  ::Address::  "+address+"  "+city+" "+
                            state;
                    Toast.makeText(getApplicationContext(),strLoc, Toast.LENGTH_LONG).show();
                } catch (Exception e) {
                    e.printStackTrace();
                    progressDialog.cancel();
                }
            }
        };
    registerReceiver(broadcastReceiver, new IntentFilter("carLocationService"));
}

谢谢, 阿林丹。

1 个答案:

答案 0 :(得分:0)

1)您未在其中添加标记m的情况下显示部分代码,可能代码多次运行;

2)似乎总线位置传感器的轮询周期很大,并且不允许跟踪总线转向(总线可以在其已知位置之间进行几圈转向)。因此,您需要插值已知总线位置之间的路径,例如使用Google Directions API