如何缩放相机以覆盖Android googlemap中的路径?

前端之家收集整理的这篇文章主要介绍了如何缩放相机以覆盖Android googlemap中的路径?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用LatLng.Builder在Google地图中覆盖了多个位置,并且它正在运行.
有什么方法可以覆盖谷歌地图中两个位置之间的整条路径吗?

我的Curent Code包含多个位置

builder = new LatLngBounds.Builder();
builder.include(LatLng1);
builder.include(LatLng2);
googleMap.animateCamera(CameraUpdateFactory.newLatLngBounds(builder.build(),17));

有什么建议吗?
谢谢

解决方法

我知道你已经找到了答案,但这是我解决问题的方法
boolean hasPoints = false;
        Double maxLat = null,minLat = null,minLon = null,maxLon = null;

        if (polyline != null && polyline.getPoints() != null) {
            List<LatLng> pts = polyline.getPoints();
            for (LatLng coordinate : pts) {
                // Find out the maximum and minimum latitudes & longitudes
                // Latitude
                maxLat = maxLat != null ? Math.max(coordinate.latitude,maxLat) : coordinate.latitude;
                minLat = minLat != null ? Math.min(coordinate.latitude,minLat) : coordinate.latitude;

                // Longitude
                maxLon = maxLon != null ? Math.max(coordinate.longitude,maxLon) : coordinate.longitude;
                minLon = minLon != null ? Math.min(coordinate.longitude,minLon) : coordinate.longitude;

                hasPoints = true;
            }
        }

        if (hasPoints) {
            LatLngBounds.Builder builder = new LatLngBounds.Builder();
            builder.include(new LatLng(maxLat,maxLon));
            builder.include(new LatLng(minLat,minLon));
            map.moveCamera(CameraUpdateFactory.newLatLngBounds(builder.build(),48));
        }
原文链接:/android/313835.html

猜你在找的Android相关文章