private void Map_CameraMoveStarted(object sender, GoogleMap.CameraMoveStartedEventArgs e)
 {
     if (directionDrawn)
     {
         return;
     }
     placeTextView.Text = "Setting new location";
 }
示例#2
0
 private void Map_CameraMoveStarted(object sender, GoogleMap.CameraMoveStartedEventArgs e)
 {
     placeTextView.Text = "Setting new location";
 }
 private void Map_CameraMoveStarted(object sender, GoogleMap.CameraMoveStartedEventArgs e)
 {
     CloseDetailInfo();
 }
 void NativeMap_CameraMoveStarted(object sender, GoogleMap.CameraMoveStartedEventArgs e)
 {
     // see https://developers.google.com/maps/documentation/android-api/events#camera_change_events
     _map.SendCameraMoveStarted(e.Reason == OnCameraMoveStartedListener.ReasonGesture);
 }
示例#5
0
 private void GoogleMap_MapPush(object sender, GoogleMap.CameraMoveStartedEventArgs e)
 {
     DrawElements();
 }