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

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

        #endregion

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

        #endregion

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