是否有可能以显示谷歌Android地图API V2 /隐藏标记?(Is it possible to

2019-07-18 15:44发布

我会(使用谷歌地图API V2在我的Android应用程序)根据类别隐藏或我的GoogleMap对象上显示标记,就像谷歌地图网页API,例如喜欢:

我有50个标记,其中的20代表饭店,20代表他们公共汽车站,和图10是一个电影院GoogleMap的。

是否有可能在Android谷歌地图API V2做过滤这些标记,通​​过隐藏所有的餐厅标志,如果我们取消选中例如一个复选框?

我愿做这样的事情,但我使用谷歌地图API V2的Android设备上: http://www.geocodezip.com/v3_MW_example_categories.html

很抱歉的基本问题,但我是一个初学者。

Answer 1:

试试这个方法。

 Marker restuarantMarkers = gMap.addMarker(new MarkerOptions()
                .position(latlng)
                .title("MyPlace").icon(BitmapDescriptorFactory.fromResource(R.drawable.ic_pin)).draggable(true));

On Click事件

  restuarantMarkers.setVisible(false);

通过这种方式可以做到的使用环路..

请让我知道这对你有没有用。



Answer 2:

如果你想筛选的地点,您可以使用对话框。

final Dialog dialog = new Dialog(context);
        dialog.setContentView(R.layout.dialog);
        Button bt_ok = (Button) dialog.findViewById(R.id.button1);
        final CheckBox cb1 = (CheckBox) dialog.findViewById(R.id.checkBox1);
        final CheckBox cb2 = (CheckBox) dialog.findViewById(R.id.checkBox2);
        dialog.setTitle("Category");

        bt_ok.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View arg0) {
                mMap.clear();
                if (cb1.isChecked()){
                    mMap.addMarker(new MarkerOptions().position(new LatLng(44.109798, 15.242270)).title("Pin").icon(BitmapDescriptorFactory.fromResource(R.drawable.museum)));
                }
                if (cb2.isChecked()){
                    mMap.addMarker(new MarkerOptions().position(new LatLng(44.209798, 15.392270)).title("Pin 2").icon(BitmapDescriptorFactory.fromResource(R.drawable.restaurants)));
                }
                dialog.dismiss();
            }

        });

        dialog.show();


Answer 3:

是的你可以! 而这里的如何...

// MMAP是已经被别的地方初始化的GoogleMap的实例

mMap.setOnCameraChangeListener(getCameraChangeListener());
getCameraChangeListener() 
public OnCameraChangeListener getCameraChangeListener()

{
return new OnCameraChangeListener()
{
    @Override
    public void onCameraChange(CameraPosition position)

    {
        addItemsToMap(this.items);
    }

};

}

//你的“项”级至少需要一个唯一的ID,纬度和经度。

private void addItemsToMap(List<Item> items)
{
  if(this.mMap != null)

{

    LatLngBounds bounds = this.mMap.getProjection().getVisibleRegion().latLngBounds;

    for(Item item : items)
    {

        if(bounds.contains(new LatLng(item.getLatitude(), item.getLongitude()))

        {
            if(!courseMarkers.containsKey(item.getId()))

            {

                this.courseMarkers.put(item.getId(),     this.mMap.addMarker(getMarkerForItem(item)));

            }

        }
        else
        {

            if(courseMarkers.containsKey(item.getId()))

            {

             courseMarkers.get(item.getId()).remove();
             courseMarkers.remove(item.getId());

            }

        }

    }

    }

   }


Answer 4:

在这里,LocationArray是位置,这是在地图上绘制的ArrayList中。 我们要展示绘在地图上的所有标记。

 private void FitAllMarkers() {


    LatLngBounds.Builder builder = new LatLngBounds.Builder();
    for (int i = 0; i < LocationArray.size(); i++) {
        builder.include(new LatLng(Double.parseDouble(LocationArray.get(i).getLat()), Double.parseDouble(LocationArray.get(i).getLng())));

    }


    LatLngBounds bounds = builder.build();
    mMap.animateCamera(CameraUpdateFactory.newLatLngBounds(bounds, 100));

}


文章来源: Is it possible to show/hide Markers in Android Google maps api v2?