无法使用setData()

时间:2015-09-22 12:19:32

标签: java android google-maps-android-api-2 android-maps-extensions

对于我的生活,我无法弄清楚如何使用setData()作为标记。

我的代码:

MarkerOptions markerOptions = new MarkerOptions().position(position).title(title).snippet(snippet);

Marker marker = map.addMarker(markerOptions);

marker.setData(data); // This doens't work, simply says cannot resolve.

我在build.gradle中有以下内容:

compile 'com.androidmapsextensions:android-maps-extensions:2.2.0'
compile 'com.google.android.gms:play-services-maps:7.8.0'
compile 'com.google.android.gms:play-services-location:7.8.0'

我如何使用setData?!

1 个答案:

答案 0 :(得分:0)

从Android Maps Extensions迁移“指南”:

  

迁移到Extensions时,您只需更改:

     
      
  • 几个导入声明,
  •   
  • SupportMapFragment(或MapView)xml和
  • 中的完整班级名称   
  • getExtendedMap(或getMap)上致电SupportMapFragment而不是MapView
  •