作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的应用程序中,我必须显示有关位置处的标记的信息。这是我的工作代码。
mPerth = mMap.addMarker(new MarkerOptions()
.position(PERTH)
.title("Perth")
.snippet("Population: Perth")
.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_ORANGE)));
mPerth.showInfoWindow();
最佳答案
试试这个。
marker.setInfoWindowAnchor(1f,1f)
编辑:
对于自定义 infoWindow,您必须具体实现 GoogleMap.InfoWindowAdapter 并在 getInfoWindow(Marker marker) 方法中扩充您的 custom_info_window_layout.xml 文件。
public class CustomInfoWindowAdapter implements GoogleMap.InfoWindowAdapter {
Activity context;
CustomInfoWindow(Activity context){
this.context =context;
}
@Override
public View getInfoWindow(Marker marker) {
View view = context.getLayoutInflater().inflate(R.layout.custom_info_window_layout, null);
TextView title =(TextView) view.findViewById(R.id.tv_title);
TextView snippet =(TextView) view.findViewById(R.id.tv_snippet);
title.setText(marker.getTitle());
snippet.setText(marker.getSnippet());
return view;
}
@Override
public View getInfoContents(Marker marker) {
return null;
}
}
最后在 map 上设置这个CustomInfoWindowAdapter。
map.setInfoWindowAdapter(new CustomInfoWindowAdapter(MainActivity.this))
关于java - 谷歌地图标记showinfowindow自定义Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62350019/
leaflet:一个开源并且对移动端友好的交互式地图 JavaScript 库 中文文档: https://leafletjs.cn/reference.html 官网(英文): ht
我是一名优秀的程序员,十分优秀!