How to trigger an event when google map marker is dropped at a certain location on screen?

93 Views Asked by At

The google map marker can be dragged around the screen so I want to know if there's a way to trigger an event when the marker is dropped at a certain location on the screen, say, bottom left.

2

There are 2 best solutions below

1
On BEST ANSWER

After layout created and map initialized add the following code in onCreate();

    View mapView = getSupportFragmentManager().findFragmentById(R.id.map).getView();
if (mapView.getViewTreeObserver().isAlive()) {
    mapView.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
        @Override
        public void onGlobalLayout() {
           mapView.getViewTreeObserver().removeGlobalOnLayoutListener(this);
            map.moveCamera(CameraUpdateFactory.newLatLngZoom(CENTER, 15));
            Point markerScreenPosition = map.getProjection().toScreenLocation(marker.getPosition());
            int x = markerScreenPosition.getX();
            int y = markerScreenPosition.getY();
            if(x == yourValue && y == yourValue){
               //your trigger code goes here   
             }
        }
    });
}
2
On

I think markers are not automatically dropped. they are handled by your code. for example you can add a marker on map click or on map long click. get that event and try fixing