在Google地图集群中为标记添加标题

时间:2014-09-07 14:02:07

标签: android google-maps google-maps-markers

我正在创建一个包含数百个标记的应用程序,因此我决定实现群集是一个好主意。但是,我遇到了为集群中的标记添加标题的问题。我需要这些数据,以便稍后在创建标记的信息窗口时从JSON检索项目。总结我的问题是,如何将一个字符串作为标题添加到集群中的每个标记。

我目前的代码:

public class MyItem implements ClusterItem {
    private final LatLng mPosition;

    public MyItem(double lat, double lng) {
        mPosition = new LatLng(lat, lng);
    }

    @Override
    public LatLng getPosition() {
        return mPosition;
    }
}

for (int i = 0; i < activity.m_jArry.length(); i++)
    {
        JSONObject j;
        try {
            j = activity.m_jArry.getJSONObject(i);
            mClusterManager.addItem(new MyItem(j.getDouble("lat"), j.getDouble("lon")));
            //mMap.addMarker(new MarkerOptions().title(j.getString("Unique")).snippet(i + "").position(new LatLng(j.getDouble("lat"), j.getDouble("lon"))));
        } catch (JSONException e) {
            e.printStackTrace();
        }
    }

感谢您的帮助:)

1 个答案:

答案 0 :(得分:3)

有一个全球解决方案可以帮助您添加标题,代码段和图标,以便获得所需内容。

修改ClusterItem对象并添加3个变量:

public class MyItem implements ClusterItem {

private final LatLng mPosition;
BitmapDescriptor icon;
String title;
String snippet;

public MyItem(BitmapDescriptor ic,Double lat , Double lng,String tit ,String sni)
{
    mPosition = new LatLng(lat,lng);
    icon = ic;
    title = tit;
    snippet = sni;

}

创建服装渲染后:

public class OwnRendring extends DefaultClusterRenderer<MyItem> {

    public OwnRendring(Context context, GoogleMap map,
                           ClusterManager<MyItem> clusterManager) {
        super(context, map, clusterManager);
    }


    protected void onBeforeClusterItemRendered(MyItem item, MarkerOptions markerOptions) {

        markerOptions.icon(item.getIcon());
        markerOptions.snippet(item.getSnippet());
        markerOptions.title(item.getTitle());
        super.onBeforeClusterItemRendered(item, markerOptions);
    }
}

之后只需在addItems()之前将此行放入SetUpCluster()函数中:

 mClusterManager.setRenderer(new OwnRendring(getApplicationContext(),mMap,mClusterManager));