简体   繁体   中英

Google Maps Android API v2 Show marker on zoom level

How can show markers on specific zoom level using Google Maps Android API v2? I have more than 1000 Markers, so it's not good idea to show all on start.

Here is simple example:

#

// latitude and longitude

MarkerOptions marker = new MarkerOptions().position(new LatLng(latitude, longitude)).title("Hello Maps ");

// create marker

googleMap.addMarker(marker);

// adding marker

 googleMap.addMarker(marker); 
#

Thank you for help

put below code

googleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(HAMBURG, 15));

here Move the camera instantly to marker with a zoom of 15. if you wanna change zoom level you can change.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM