How to move marker on the Google Map like Ola app

前端 未结 3 968
日久生厌
日久生厌 2021-01-03 17:15

I am working on app the like Ola cabs. When the user drags map the a view transparent view appears with marker moving and when the user stops dragging the we have to centre

3条回答
  •  攒了一身酷
    2021-01-03 17:42

    Use delegates of GMSMapView

    - (void) mapView:(GMSMapView *)mapView didDragMarker:(GMSMarker *)marker;
    - (void) mapView:(GMSMapView *)mapView didBeginDraggingMarker:(GMSMarker *)marker;
    - (void) mapView:(GMSMapView *)mapView didEndDraggingMarker:(GMSMarker *)marker;
    

提交回复
热议问题