csDataServerPlugin.PoiGraphic.TappedByExternalMapControlMapGesture C# (CSharp) 메소드

TappedByExternalMapControlMapGesture() 공개 메소드

This function is calles from multiple places outside the class!!
public TappedByExternalMapControlMapGesture ( MapPoint tapPos ) : void
tapPos MapPoint
리턴 void
        public void TappedByExternalMapControlMapGesture(MapPoint tapPos)
        {
            if (DateTime.Now < lastTap.AddMilliseconds(500)) return;
            lastTap = DateTime.Now;
            mLastKnownTapPoint = tapPos;
            EndTapped();

        }