Android谷歌地图显示缩放变化标记

时间:2014-08-08 07:38:49

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

伙计我必须在谷歌地图上用缩放显示标记。当用户放大或缩小标记时,将会看到屏幕上的地图区域。我如何使用Android谷歌地图做到这一点?

2 个答案:

答案 0 :(得分:6)

好的,你可以使用CameraChangeListener:

private HashMap<Integer, Marker> courseMarkers = new HashMap<Integer, Marker>();
//all your visible markers
ArrayList<Item> yourMarkerList = new ArrayList<Item>();
//method to add all your markers with unique ids
addItemsToMap(); //first call to initially show the markers you want

googleMap.setOnCameraChangeListener(new OnCameraChangeListener() {

private float currentZoom = -1; //keep track of your current zoom level

@Override
public void onCameraChange(CameraPosition camera) {
    if (camera.zoom != currentZoom){
        currentZoom = camera.zoom;
        //here you will then check your markers
        addItemsToMap(yourMarkerList);
    }
}
});

您需要一个具有唯一int id和MarkerOptions

变量的类Item
private void addItemsToMap(List<Item> items)
{
if(this.mMap != null)
{
    //This is the current user-viewable region of the map
    LatLngBounds bounds = this.mMap.getProjection().getVisibleRegion().latLngBounds;

    //Loop through all the items that are available to be placed on the map
    for(Item m : item) 
    {

        //If the item is within the the bounds of the screen
        if(bounds.contains(item.getMarker().getPosition()))
        {
            //If the item isn't already being displayed
            if(!courseMarkers.containsKey(item.getId()))
            {
                //Add the Marker to the Map and keep track of it with the HashMap
                //getMarkerForItem just returns a MarkerOptions object
                this.courseMarkers.put(item.getId(), this.googleMap.addMarker(item.getMarker())); //getmarkerforitem
            }
        }

        //If the marker is off screen
        else
        {
            //If the course was previously on screen
            if(courseMarkers.containsKey(item.getId()))
            {
                //1. Remove the Marker from the GoogleMap
                courseMarkers.get(item.getId()).remove();

                //2. Remove the reference to the Marker from the HashMap
                courseMarkers.remove(item.getId());
            }
        }
    }
}

}

这应该这样做

答案 1 :(得分:0)

private void pointToPosition(LatLng position) {
    //Build camera position
    CameraPosition cameraPosition = new CameraPosition.Builder()
            .target(position)
            .zoom(15).build();
    //Zoom in and animate the camera.
    mGoogleMap.animateCamera(CameraUpdateFactory.newCameraPosition(cameraPosition));
}
相关问题