谷歌地图:每个标记的不同自定义信息窗口



我有一个安卓应用程序,其中包含一个MapsActivity,以使用GoogleMaps显示许多标记。

标记是通过时间戳对象创建的

时间戳对象属性

(double lat,lon;
int stepSum;
long timeMilli;
String state=null;)

存储在 Firebase 数据库中。

因此,我从数据库中检索每个时间戳,并尝试使用上述特征创建一个标记。我的问题是,当我单击标记时,将显示自定义信息窗口,但所有标记都相同。它应该为不同的标记显示不同的属性。

为什么会这样

drawMarkers()方法中,当我创建新标记并将该信息窗口设置为 谷歌地图对象与mMap.setInfoWindowAdapter(infoWindow);.

结果mMap.setInfoWindowAdapter(infoWindow);调用的次数与创建标记一样多,最后只有最后一个信息窗口幸存下来。这就是问题所在,但我无法找到解决方案。

如何实现一个信息窗口,当我单击标记时,它会显示某种数据,当我单击另一个标记时,它会显示不同类型的数据(相同的布局,不同的属性(。

一个有效的例子也可以。

private class CustomInfoWindow implements GoogleMap.InfoWindowAdapter{
private String title=null,hour=null,state=null;
private int steps=0;
public CustomInfoWindow(){}
public CustomInfoWindow(String title, String hour, String state, int steps) {
this.title = title;
this.hour = hour;
this.state = state;
this.steps = steps;
}
@Override
public View getInfoWindow(Marker marker) {
return null;
}
public void setState(String state) {
this.state = state;
}
@Override
public View getInfoContents(Marker marker) {
LayoutInflater inflater = LayoutInflater.from(getApplicationContext());
View root = inflater.inflate(R.layout.marker_infowindow,null);
TextView titleTextView = (TextView) root.findViewById(R.id.infowindow_title);
TextView hourTextView = (TextView) root.findViewById(R.id.infowindow_hour);
TextView stepsTextView = (TextView) root.findViewById(R.id.infowindow_steps);
TextView stateTextView = (TextView) root.findViewById(R.id.infowindow_state);
titleTextView.setText(title);
if (state!=null){
stateTextView.setText(getApplicationContext().getString(R.string.state)+" "+state);
stateTextView.setVisibility(View.VISIBLE);
}
hourTextView.setText(getApplicationContext().getString(R.string.time)+" "+hour);
stepsTextView.setText(getApplicationContext().getString(R.string.steps_so__far)+" "+steps);
return root;
}
public void setTitle(String title) {
this.title = title;
}
public void setHour(String hour) {
this.hour = hour;
}
public void setSteps(int steps) {
this.steps = steps;
}
}

如何绘制标记

private void drawMarkers(Calendar c){
String userId = this.user.getAccount().getId();
int year = c.get(Calendar.YEAR);
int month = c.get(Calendar.MONTH);
int dayOfMonth = c.get(Calendar.DAY_OF_MONTH);
final DatabaseReference timestampRef = FirebaseDatabase.getInstance().getReference()
.child(FirebaseConstant.TIMESTAMPS.toString());
timestampRef.child(userId).child(""+year).child(""+month).child(""+dayOfMonth)
.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
long childCounter=0;
for (DataSnapshot timestampSnapshot:dataSnapshot.getChildren()){
CustomInfoWindow infoWindow=new CustomInfoWindow();
Timestamp temp = timestampSnapshot.getValue(Timestamp.class);
if (temp!=null){
infoWindow.setTitle(getString(R.string.todays_timestamp));
infoWindow.setHour(getFormatedHourFromTimeMilli(temp.getTimeMilli()));
infoWindow.setSteps(temp.getStepSum());
if (temp.getState()!=null){
infoWindow.setState(temp.getState());
}
mMap.setInfoWindowAdapter(infoWindow);
drawTimestamp(temp);
infoWindow=null;
}
}
}
@Override
public void onCancelled(DatabaseError databaseError) {}
});
}

我已经阅读了谷歌关于信息窗口的教程,但无法解决我的问题。

希望这个例子能帮助你把它用作简单的xml布局。 请记住,按钮将不起作用,如果您希望按照chose007示例获得处于可行状态的按钮,则textview将当场完成您的要求。

我的解决方案

  • 创建一个扩展 GoogleMap.InfoWindowAdapter 的类。这将是整个地图的自定义信息窗口。
  • 在 onMapReady(( 中,将自定义信息窗口对象的实现设置为 GoogleMap 对象。这将是用户单击地图中的标记时显示的唯一信息窗口。
  • 最后,在 onMapReady(( 方法中,将 OnMarkerClickListener 也设置为 GoogleMap 对象。您的GoogleMap.OnMarkerClickListener.onMarkerClick(标记标记(的实现只会更改信息窗口的内容(更改信息窗口对象的属性,随心所欲地调用它(,具体取决于单击的标记。

相关内容

  • 没有找到相关文章

最新更新