11

我正在使用谷歌地图 APIv2 进行开发。我现在面临的问题是我只能在信息窗口/片段中添加一行单词。但是我想要的输出能够以折线形式显示,如下面的示例所示。那么有没有可能的方法来解决呢?

例子:

坐标:03.05085、101.70506

限速:80 公里/小时

public class MainActivity extends FragmentActivity {
  static final LatLng SgBesi = new LatLng(03.05085, 101.76022);
  static final LatLng JB = new LatLng(1.48322, 103.69065);
  private GoogleMap map;


  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    map = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map))
            .getMap();

    map.addMarker(new MarkerOptions().position(SgBesi)
        .title("KM D7.7 Sungai Besi")               //name
        .snippet("Coordinate: 03.05085, 101.70506"));   //description

    map.addMarker(new MarkerOptions().position(JB)
        .title("test") 
        .snippet("Hey, how are you?")); 

       // .icon(BitmapDescriptorFactory  //set icon
       //     .fromResource(R.drawable.ic_launcher)));

    // move the camera instantly with a zoom of 15.
    map.moveCamera(CameraUpdateFactory.newLatLngZoom(SgBesi, 15));

    // zoom in, animating the camera.       
    map.animateCamera(CameraUpdateFactory.zoomTo(15), 2000, null);
   }
}
4

3 回答 3

22

您需要使用自定义 InfoWindowAdapter将布局更改为InfoWindow使用布局文件定义的自定义设计。基本上你需要:

  1. 使用声明你的函数GoogleMap.setInfoWindowAdapter(Yourcustominfowindowadpater)
  2. 有一个像下面这样的课程:

...

class Yourcustominfowindowadpater implements InfoWindowAdapter {
    private final View mymarkerview;

    Yourcustominfowindowadpater() {
        mymarkerview = getLayoutInflater()
            .inflate(R.layout.custominfowindow, null); 
    }

    public View getInfoWindow(Marker marker) {      
        render(marker, mymarkerview);
        return mymarkerview;
    }

    public View getInfoContents(Marker marker) {
       return null;
    }

    private void render(Marker marker, View view) {
       // Add the code to set the required values 
       // for each element in your custominfowindow layout file
    }
}
于 2013-06-30T19:16:55.733 回答
0

您必须使用 InfoWindowAdapter 来创建自定义信息窗口。默认实现以某种方式从片段中删除换行符,这可能被认为是一个小错误。

于 2013-06-30T19:14:51.420 回答
0

我想向@tony 添加一些内容,根据文档,您无法在自定义视图中添加操作,因为它在运行时绘制为图像。

注意:绘制的信息窗口不是实时视图。视图在返回时呈现为图像(使用 View.draw(Canvas))。这意味着对视图的任何后续更改都不会反映在地图上的信息窗口中。要稍后更新信息窗口(例如,加载图像后),请调用 showInfoWindow()。此外,信息窗口不会尊重任何普通视图的典型交互性,例如触摸或手势事件。但是,您可以在整个信息窗口上收听通用单击事件,如下节所述。

于 2015-12-31T09:11:58.290 回答