Android-Google Maps V2-将自定义信息窗口添加到从阵列创建的标记中

时间:2015-11-12 04:45:05

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

我想创建一个应用程序,它可以从数据库接收一组点,并为地图上的每个点添加标记。我目前正在使用对象数组进行测试。我在循环中使用了相同的标记变量来将标记放在地图上。

包含我的标记位置的数组还包含一些关于那些特定位置的其他数据,我想在触摸标记时在自定义信息窗(从数组中获取数据)中显示这些数据。

我不确定如何在调用此信息时区分不同的标记。

OnMarkerClickListener document on developers.google.com

我添加标记的代码:

for (pointNumber= 0; pointNumber<pointArray.length; pointNumber++) {
    taxiLatitude = pointArray[pointNumber].position.latitude;
    taxiLongitude = pointArray[pointNumber].position.longitude;

    if (valueInArray<someValue) {
        pointMarker = mMap.addMarker(new MarkerOptions()
            .position(new LatLng(pointArray[pointNumber].position.latitude, carsArray[pointNumber].position.longitude))
            .icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_GREEN))
            .title("Title: "+pointArray[pointNumber].pointTitle)
            .snippet("Snippet: "+pointArray[pointNumber].pointSnippet));
    } else {
        System.out.println("Out of range");
    }
}

我的代码将数据添加到我的自定义信息窗口,我得到了here

class CustomWindowAdapter implements GoogleMap.InfoWindowAdapter {
    LayoutInflater mInflater;
    public CustomWindowAdapter(LayoutInflater i){
        mInflater = i;
    }

    @Override
    public View getInfoContents(Marker marker) {
        // Getting view from the layout file
        View v = mInflater.inflate(R.layout.custom_window_layout, null);
        // Populate fields
        ImageView image = (ImageView) v.findViewById(R.id.image);
        image.setImageResource(pointArray[pointNumber].image);

        TextView title = (TextView) v.findViewById(R.id.tv_1);
        title.setText(pointArray[pointNumber].text1);

        TextView description = (TextView) v.findViewById(R.id.text_2);
        description.setText(pointArray[pointNumber].text2);
        }
        // Return info window contents
        return v;      

    @Override
    public View getInfoWindow(Marker marker) {
        return null;
    }
}

1 个答案:

答案 0 :(得分:0)

你必须实现HashMap,realx,很容易,我会告诉你如何识别你的所有标记:

使用键类型String和对象类型Marker:

创建HashMap
HashMap<String,Marker> hashMarkers = new HashMap<>();

将标记添加到由数字标识的哈希映射(转换为字符串):

for (int x= 0; x < yourArray.length; x++) {
        hashMarkers.put(String.valueOf(x), mMap.addMarker(new MarkerOptions()
                .position( your array (or arrays) of positions(s) )
    }

然后您可以识别您想要的每个标记:

mMap.setOnMarkerClickListener(new GoogleMap.OnMarkerClickListener() {
                @Override
                public boolean onMarkerClick(Marker marker) {
                    if (marker.equals(hashMarkers.get("the number of the marker"))) {
                        //here you can call your custom infoWindow or set the content 
                        return true;
                    } else {
                        return false;
                    }
                }
            });

希望这会对你有所帮助。