Esempio n. 1
0
 /// <summary>
 /// Starts the digitization process for a point
 /// </summary>
 /// <param name="callback">The callback to be invoked when the digitization process completes</param>
 /// <param name="customPrompt">The custom prompt to use for the tracking tooltip</param>
 public void DigitizePoint(PointDigitizationCallback callback, string customPrompt)
 {
     this.DigitizingType = MapDigitizationType.Point;
     _digitzationCallback = callback;
     _digitizationYetToStart = true;
     _pointCustomDigitizationPrompt = customPrompt;
 }
Esempio n. 2
0
 public void DigitizePoint(PointDigitizationCallback callback)
 {
     DigitizePoint(callback, null);
 }