예제 #1
0
 public MapGoogleMarker(MapGooglePoint markerPoint, string label, MarkerColor mColor)
 {
     this._label        = label;
     this._markerPoint  = markerPoint;
     this._markerColor  = mColor;
     this._markerStatus = MarkerStatus.plc;
 }
예제 #2
0
 public MapGoogleMarker(MapGooglePoint markerPoint, MarkerSize mSize, MarkerColor mColor)
 {
     this._markerPoint  = markerPoint;
     this._markerSize   = mSize;
     this._markerColor  = mColor;
     this._markerStatus = MarkerStatus.psc;
 }
예제 #3
0
        public MapGoogleMarker(MapGooglePoint markerPoint, string label)
        {

            this._markerPoint = markerPoint;
            this._label = label;
            this._markerStatus = MarkerStatus.pl;
        }
예제 #4
0
 private void MarkerStatusTriggerOnMarkerStatusUpdated(MarkerStatus status)
 {
     Visible = _visible && (MarkerStatusTrigger.CurrentStatus == MarkerStatus.Full);
 }
예제 #5
0
 public static void RaiseMarkerStatusUpdated(MarkerStatus status)
 {
     CurrentStatus = status;
     MarkerStatusUpdated?.Invoke(status);
 }
예제 #6
0
 public MapGoogleMarker(MapGooglePoint markerPoint, MarkerSize mSize)
 {
     this._markerPoint  = markerPoint;
     this._markerSize   = mSize;
     this._markerStatus = MarkerStatus.ps;
 }
예제 #7
0
 public MapGoogleMarker(MapGooglePoint markerPoint, string label)
 {
     this._markerPoint  = markerPoint;
     this._label        = label;
     this._markerStatus = MarkerStatus.pl;
 }
예제 #8
0
        private MarkerStatus _markerStatus = MarkerStatus.p;   //status

        #endregion

        #region constructors
        public MapGoogleMarker(MapGooglePoint markerPoint)
        {
            this._markerPoint  = markerPoint;
            this._markerStatus = MarkerStatus.p;
        }
예제 #9
0
 public MapGoogleMarker(MapGooglePoint markerPoint, string label, MarkerSize mSize, MarkerColor mColor)
 {
     this._markerPoint = markerPoint;
     this._label = label;
     this._markerSize = mSize;
     this._markerColor = mColor;
     this._markerStatus = MarkerStatus.plsc;
 }
예제 #10
0
 public MapGoogleMarker(MapGooglePoint markerPoint, MarkerSize mSize)
 {
     this._markerPoint = markerPoint;
     this._markerSize = mSize;
     this._markerStatus = MarkerStatus.ps;
 }
예제 #11
0
 public MapGoogleMarker(MapGooglePoint markerPoint, MarkerColor mColor)
 {
     this._markerPoint = markerPoint;
     this._markerColor = mColor;
     this._markerStatus = MarkerStatus.pc;
 }
예제 #12
0
        private MarkerStatus _markerStatus = MarkerStatus.p;//status

        #endregion

        #region constructors
        public MapGoogleMarker(MapGooglePoint markerPoint)
        {
            this._markerPoint = markerPoint;
            this._markerStatus = MarkerStatus.p;
        }
예제 #13
0
 private void MarkerStatusTriggerOnMarkerStatusUpdated(MarkerStatus status)
 {
     Visible = _visible;
 }