Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3498188
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T12:27:36+00:00 2026-05-18T12:27:36+00:00

How i can draw a route on a mapview between two poi-s?

  • 0

How i can draw a route on a mapview between two poi-s?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T12:27:36+00:00Added an answer on May 18, 2026 at 12:27 pm

    go through this codes. Modify the code as per ur requirement

    MapDirection.java:

    public class MapDirection extends MapActivity{
    
      MapView mapview;
      MapRouteOverlay mapoverlay;
      Context _context;
      List<Overlay> maplistoverlay;
      Drawable drawable,drawable2;
      MapOverlay mapoverlay2,mapoverlay3;
      GeoPoint srcpoint,destpoint;
      Overlay overlayitem;
      public void onCreate(Bundle savedInstanceState){
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);  
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
        setContentView(R.layout.map_direction);
        RegisterActivities.registerActivity(this);
        mapview=(MapView)this.findViewById(R.id.mapview);
    
        callMap();
      }
      private void callMap() {
    
    
        srcpoint=new GeoPoint((int)(Data.src_lat_date*1E6),(int)(Data.src_long_data*1E6));
        maplistoverlay=mapview.getOverlays();
        drawable=this.getResources().getDrawable(R.drawable.green_a);
        mapoverlay2=new MapOverlay(drawable);
        OverlayItem overlayitem = new OverlayItem(srcpoint, "", "");
        mapoverlay2.addOverlay(overlayitem);
        maplistoverlay.add(mapoverlay2);
    
        destpoint=new GeoPoint((int)(Data.dest_lat_data*1E6),(int)(Data.dest_long_data*1E6));
        drawable2=this.getResources().getDrawable(R.drawable.green_b);
        mapoverlay3=new MapOverlay(drawable2);
        OverlayItem overlayitem3 = new OverlayItem(destpoint, "", "");
        mapoverlay3.addOverlay(overlayitem3);
        maplistoverlay.add(mapoverlay3);
    
    
        double dest_lat = Data.dest_lat_data;
        double dest_long = Data.dest_long_data;
    
        GeoPoint srcGeoPoint = new GeoPoint((int) (Data.src_lat_date* 1E6),
            (int) (Data.src_long_data * 1E6));
        GeoPoint destGeoPoint = new GeoPoint((int) (dest_lat * 1E6),
            (int) (dest_long * 1E6));
    
        DrawPath(srcGeoPoint, destGeoPoint, Color.BLUE, mapview);
    
        mapview.getController().animateTo(srcGeoPoint);
        mapview.getController().setZoom(13);
        //mapview.setStreetView(true);
        mapview.setBuiltInZoomControls(true);
        mapview.invalidate();
    
    
      }
      private void DrawPath(GeoPoint src, GeoPoint dest, int color,
          MapView mMapView01) {
    
    
    
        // connect to map web service
        StringBuilder urlString = new StringBuilder();
        urlString.append("http://maps.google.com/maps?f=d&hl=en");
        urlString.append("&saddr=");//from
        urlString.append( Double.toString((double)src.getLatitudeE6()/1.0E6 ));
        urlString.append(",");
        urlString.append( Double.toString((double)src.getLongitudeE6()/1.0E6 ));
        urlString.append("&daddr=");//to
        urlString.append( Double.toString((double)dest.getLatitudeE6()/1.0E6 ));
        urlString.append(",");
        urlString.append( Double.toString((double)dest.getLongitudeE6()/1.0E6 ));
        urlString.append("&ie=UTF8&0&om=0&output=kml");
        Log.d("xxx","URL="+urlString.toString());
    
        //System.out.println(urlString);
        // get the kml (XML) doc. And parse it to get the coordinates(direction route).
        Document doc = null;
        HttpURLConnection urlConnection= null;
        URL url = null;
        try
        {
          url = new URL(urlString.toString());
          urlConnection=(HttpURLConnection)url.openConnection();
          urlConnection.setRequestMethod("GET");
          urlConnection.setDoOutput(true);
          urlConnection.setDoInput(true);
          urlConnection.connect();
    
          DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
          DocumentBuilder db = dbf.newDocumentBuilder();
          doc = db.parse(urlConnection.getInputStream());
    
          if(doc.getElementsByTagName("GeometryCollection").getLength()>0)
          {
            //String path = doc.getElementsByTagName("GeometryCollection").item(0).getFirstChild().getFirstChild().getNodeName();
            String path = doc.getElementsByTagName("GeometryCollection").item(0).getFirstChild().getFirstChild().getFirstChild().getNodeValue() ;
            Log.d("xxx","path="+ path);
            String [] pairs = path.split(" ");
            String[] lngLat = pairs[0].split(","); // lngLat[0]=longitude lngLat[1]=latitude lngLat[2]=height
            // src
            GeoPoint startGP = new GeoPoint((int)(Double.parseDouble(lngLat[1])*1E6),(int)(Double.parseDouble(lngLat[0])*1E6));
            //mMapView01.getOverlays().add(overlayitem);
            GeoPoint gp1;
            GeoPoint gp2 = startGP;
            for(int i=1;i<pairs.length;i++) // the last one would be crash
            {
              lngLat = pairs[i].split(",");
              gp1 = gp2;
              // watch out! For GeoPoint, first:latitude, second:longitude
              gp2 = new GeoPoint((int)(Double.parseDouble(lngLat[1])*1E6),(int)(Double.parseDouble(lngLat[0])*1E6));
              mMapView01.getOverlays().add(new MapRouteOverlay(gp1,gp2,2,color));
              Log.d("xxx","pair:" + pairs[i]);
            }
            //mMapView01.getOverlays().add(new MapRouteOverlay(dest,dest, 3)); // use the default color
          }
        }
        catch (MalformedURLException e)
        {
          e.printStackTrace();
        }
        catch (IOException e)
        {
          e.printStackTrace();
        }
        catch (ParserConfigurationException e)
        {
          e.printStackTrace();
        }
        catch (SAXException e)
        {
          e.printStackTrace();
        }
    
    
      }
      @Override
        protected boolean isRouteDisplayed() {
          // TODO Auto-generated method stub
          return false;
        }
    }
    

    MapRouteOverlay.java:

    public class MapRouteOverlay extends Overlay {
    
      private GeoPoint gp1;
      private GeoPoint gp2;
    
      private int mode=0;
      private int defaultColor;
    
    
    
    
      public MapRouteOverlay(GeoPoint gp1,GeoPoint gp2,int mode) // GeoPoint is a int. (6E)
      {
        this.gp1 = gp1;
        this.gp2 = gp2;
        this.mode = mode;
        defaultColor = 999; // no defaultColor
    
      }
    
      public MapRouteOverlay(GeoPoint gp1,GeoPoint gp2,int mode, int defaultColor)
      {
        this.gp1 = gp1;
        this.gp2 = gp2;
        this.mode = mode;
        this.defaultColor = defaultColor;
      }
    
      public int getMode()
      {
        return mode;
      }
    
      public boolean draw
        (Canvas canvas, MapView mapView, boolean shadow, long when)
        {
          Projection projection = mapView.getProjection();
          if (shadow == false)
          {
    
            Paint paint = new Paint();
            paint.setAntiAlias(true);
            Point point = new Point();
            projection.toPixels(gp1, point);
    
            if(mode==2)
            {
              if(defaultColor==999)
                paint.setColor(Color.RED);
              else
                paint.setColor(defaultColor);
              Point point2 = new Point();
              projection.toPixels(gp2, point2);
              paint.setStrokeWidth(5);
              paint.setAlpha(120);
              canvas.drawLine(point.x, point.y, point2.x,point2.y, paint);
            }
    
          }
          return super.draw(canvas, mapView, shadow, when);
        }
    }
    

    MapOverlay.java:

    public class MapOverlay extends ItemizedOverlay {
      private ArrayList<OverlayItem> mOverlays = new ArrayList<OverlayItem>();
    
      public MapOverlay(Drawable _defaultMarker) {
    
        super(boundCenterBottom(_defaultMarker));
      }
    
      @Override
      protected OverlayItem createItem(int i) {
        return mOverlays.get(i);
      } 
      public void addOverlay(OverlayItem overlay) {
          mOverlays.add(overlay);
          populate();
      }
    
      @Override
      public int size() {
        return mOverlays.size();
      }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.