我在网上看到了 因此,我确认可以在Google地图中的一个路径中填写2条不同的折线。
为了实验这一点,我尝试首先使用以下代码添加一条折线:
public static void drawEncodedPolyOnMap(String encoded, GoogleMap map) {
List<LatLng> points = new ArrayList<>();
int index = 0, len = encoded.length();
int lat = 0, lng = 0;
while (index < len) {
int b, shift = 0, result = 0;
do {
b = encoded.charAt(index++) - 63;
result |= (b & 0x1f) << shift;
shift += 5;
} while (b >= 0x20);
int dlat = ((result & 1) != 0 ? ~(result >> 1) : (result >> 1));
lat += dlat;
shift = 0;
result = 0;
do {
b = encoded.charAt(index++) - 63;
result |= (b & 0x1f) << shift;
shift += 5;
} while (b >= 0x20);
int dlng = ((result & 1) != 0 ? ~(result >> 1) : (result >> 1));
lng += dlng;
LatLng p = new LatLng((((double) lat / 1E5)),
(((double) lng / 1E5)));
points.add(p);
}
map.addPolyline(new PolylineOptions().width(7).color(Color.RED).geodesic(true).addAll(points));
}
但它并没有给我我预期的显示
基本上在我的情况下,即使标记位于道路的边缘,折线也会居中对齐,我不喜欢这种情况。
是否可以将折线与Android中的标记对齐?怎么样?
答案 0 :(得分:0)
似乎没有人回答,我只是找到了如何做的方法。
基本上,我刚刚更新了drawEncodedPolyOnMap,以便为LatLng
返回的原始bit shifting
添加填充。所以这里是下面的代码
public static void drawEncodedPolyOnMap(String encoded, GoogleMap map, boolean type) {
List<LatLng> points = new ArrayList<>();
int index = 0, len = encoded.length();
int lat = 0, lng = 0;
while (index < len) {
int b, shift = 0, result = 0;
do {
b = encoded.charAt(index++) - 63;
result |= (b & 0x1f) << shift;
shift += 5;
} while (b >= 0x20);
int dlat = ((result & 1) != 0 ? ~(result >> 1) : (result >> 1));
lat += dlat;
shift = 0;
result = 0;
do {
b = encoded.charAt(index++) - 63;
result |= (b & 0x1f) << shift;
shift += 5;
} while (b >= 0x20);
int dlng = ((result & 1) != 0 ? ~(result >> 1) : (result >> 1));
lng += dlng;
double newLat = (((double) lat / 1E5));
double newLng = (((double) lng / 1E5));
if(type){
points.add(new LatLng(newLat+PADDING_LAT, newLng+PADDING_LNG));
}else{
points.add(new LatLng(newLat-PADDING_LAT, newLng-PADDING_LNG));
}
}
map.addPolyline(new PolylineOptions().width(7).color((type)?Color.RED:Color.GREEN).geodesic(true).addAll(points));
}
就是这样。问题解决了。