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

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

        #endregion

        #region constructors
        public MapGoogleMarker(MapGooglePoint markerPoint)
        {
            this._markerPoint  = markerPoint;
            this._markerStatus = MarkerStatus.p;
        }
Esempio n. 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;
 }
Esempio n. 10
0
 public MapGoogleMarker(MapGooglePoint markerPoint, MarkerSize mSize)
 {
     this._markerPoint = markerPoint;
     this._markerSize = mSize;
     this._markerStatus = MarkerStatus.ps;
 }
Esempio n. 11
0
 public MapGoogleMarker(MapGooglePoint markerPoint, MarkerColor mColor)
 {
     this._markerPoint = markerPoint;
     this._markerColor = mColor;
     this._markerStatus = MarkerStatus.pc;
 }
Esempio n. 12
0
        private MarkerStatus _markerStatus = MarkerStatus.p;//status

        #endregion

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