我正在我的地图上绘制polyline
,我需要向用户显示一些数据。
如何在每个polyline
上绘制文字或InfoWindow?
我添加polyline
,如:
ArrayList<LatLng> points = null;
PolylineOptions lineOptions = null;
MarkerOptions markerOptions = new MarkerOptions();
// Traversing through all the routes
for(int i=0;i<result.size();i++){
points = new ArrayList<LatLng>();
lineOptions = new PolylineOptions();
String color = colors[i % colors.length];
// Fetching i-th route
List<HashMap<String, String>> path = result.get(i);
// Fetching all the points in i-th route
for(int j=0;j<path.size();j++){
HashMap<String,String> point = path.get(j);
double lat = Double.parseDouble(point.get("lat"));
double lng = Double.parseDouble(point.get("lng"));
LatLng position = new LatLng(lat, lng);
points.add(position);
}
// Adding all the points in the route to LineOptions
lineOptions.addAll(points);
lineOptions.width(5);
lineOptions.color(Color.parseColor(color));
// Drawing polyline in the Google Map for the i-th route
mMap.addPolyline(lineOptions);
}
例如我需要这样:
答案 0 :(得分:3)
我是通过在折线上创建一个不可见标记,然后显示其信息窗口来实现的。例如:
//use a transparent 1px & 1px box as your marker
BitmapDescriptor transparent = BitmapDescriptorFactory.fromResource(R.drawable.transparent);
MarkerOptions options = new MarkerOptions()
.position(new LatLng(someLatitide, someLongitude))
.title(someTitle)
.snippet(someSnippet)
.icon(transparent)
.anchor((float) 0.5, (float) 0.5); //puts the info window on the polyline
Marker marker = mMap.addMarker(options);
//open the marker's info window
marker.showInfoWindow();
更新以包含触摸折线和打开信息窗口的一般方法: 1.实现OnMapClickListener 2.在onMapClick事件上,确定用户是否已触摸折线。我通过将折线点存储在四叉树中并在四叉树中搜索用户触摸屏幕的最近点来完成此操作。如果距离在某个阈值内(即接近折线),则创建上面引用的不可见标记并打开其信息窗口。如果触摸不在阈值范围内,请忽略onMapClick事件。 3.在下一个onMapClick事件中删除先前创建的不可见标记,这样就不会有一堆不可见的标记占用内存。希望有所帮助。
答案 1 :(得分:0)
使用Google Direction API获取路线并绘制折线
在Map中添加OnPolylineClickListener并使用getTag
获取引用mMap.setOnPolylineClickListener(new GoogleMap.OnPolylineClickListener() {
@Override
public void onPolylineClick(Polyline polyline) {
Log.e("Polyline position", " -- " + polyline.getTag());
onButtonShowPopupWindowClick(" " + polyline.getTag());
}
});
使用setTag方法
在折线中设置任何引用 Polyline line = mMap.addPolyline(lineOptions);
line.setTag("" + i);
line.setClickable(true);
在折线单击中打开PopupWindow
public void onButtonShowPopupWindowClick(String count){
String[] timeDistance = count.split(",");
// get a reference to the already created main layout
LinearLayout mainLayout = (LinearLayout)
findViewById(R.id.whole_layout);
// inflate the layout of the popup window
LayoutInflater inflater = (LayoutInflater)
getSystemService(LAYOUT_INFLATER_SERVICE);
View popupView = inflater.inflate(R.layout.polyline_window, null);
((TextView) popupView.findViewById(R.id.time)).setText("30 mins");
((TextView) popupView.findViewById(R.id.distance)).setText("20 km");
// create the popup window
int width = LinearLayout.LayoutParams.WRAP_CONTENT;
int height = LinearLayout.LayoutParams.WRAP_CONTENT;
boolean focusable = true; // lets taps outside the popup also dismiss it
final PopupWindow popupWindow = new PopupWindow(popupView, width, height, focusable);
// show the popup window
popupWindow.showAtLocation(mainLayout, Gravity.CENTER, 0, 0);
// dismiss the popup window when touched
popupView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
popupWindow.dismiss();
return true;
}
});
}
答案 2 :(得分:0)
我用最简单的方式完成了以下工作:
private GoogleMap mMap;
在Google地图上添加标记时:
LatLng mLatLng = new LatLng(YourLatitude, YourLongitude);
//transparent 1x1 drawable
BitmapDescriptor transparent = BitmapDescriptorFactory.fromResource(R.drawable.transparent_box_1dp);
// add marker
mMap.addMarker(new MarkerOptions().position(mLatLng).title("My Title").snippet("My Snippet"+"\n"+"1st Line Text"+"\n"+"2nd Line Text"+"\n"+"3rd Line Text").icon(transparent);
之后在Google地图上放置InfoWindow适配器的以下代码,如果您愿意,可以在onMapReady()
中填写:
mMap.setInfoWindowAdapter(new GoogleMap.InfoWindowAdapter() {
@Override
public View getInfoWindow(Marker arg0) {
return null;
}
@Override
public View getInfoContents(Marker marker) {
LinearLayout info = new LinearLayout(mContext);
info.setOrientation(LinearLayout.VERTICAL);
TextView title = new TextView(mContext);
title.setTextColor(Color.BLACK);
title.setGravity(Gravity.CENTER);
title.setTypeface(null, Typeface.BOLD);
title.setText(marker.getTitle());
TextView snippet = new TextView(mContext);
snippet.setTextColor(Color.GRAY);
snippet.setText(marker.getSnippet());
info.addView(title);
info.addView(snippet);
return info;
}
});