Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find the markers position in google map while moving camera positions

How to find the markers and markers positions (Lat,Lan) on Google map while moving the camera position.?

like image 993
Dhanraaj Sreenagesh Avatar asked Dec 14 '15 04:12

Dhanraaj Sreenagesh


1 Answers

Using oncamera change listener you can get latitude and longitude

map.setOnCameraChangeListener(new OnCameraChangeListener() {

        @Override
        public void onCameraChange(CameraPosition position) {
            LatLng latvalue = position.target;
            double lat = latvalue.latitude;
            double lng = latvalue.longitude;
        }
    });
like image 51
Madhu Avatar answered Sep 21 '22 19:09

Madhu