Android uses Baidu lbs SDK (ii)

Source: Internet
Author: User

Prev: Android use Baidu lbs SDK (Baidu Map to achieve the basic use of records, track, optimize the smoothness of the trajectory, track viewing and sharing. )

Today, we summarize the use of distance measurement and speed measurement:


Calculate trajectory start point straight distance and route distance

Code:

            // 直线距离            double linearDistance = DistanceUtil.getDistance(llStart, llEnd);            // 轨迹距离            double0.0;            for (int01; i++) {                routeDistance = routeDistance                        + DistanceUtil.getDistance(points.get(i),                                points.get1));            }



Remove the Mapview zoom control and Baidu logo

Code:

        mMapView = (MapView) findViewById(R.id.routeMap);        // 去掉缩放控件和百度Logo        int count = mMapView.getChildCount();        for (int0; i < count; i++) {            View child = mMapView.getChildAt(i);            ifinstanceofinstanceof ZoomControls) {                child.setVisibility(View.INVISIBLE);            }        }

Write so much first, follow slowly add.

I'm in these places: CSDN GitHub Weibo

Android uses Baidu lbs SDK (ii)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.