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

            this._markerPoint = markerPoint;
            this._label = label;
            this._markerStatus = MarkerStatus.pl;
        }
Example #3
0
 public MapGoogleMarker(MapGooglePoint markerPoint, string label, MarkerColor mColor)
 {
     this._label        = label;
     this._markerPoint  = markerPoint;
     this._markerColor  = mColor;
     this._markerStatus = MarkerStatus.plc;
 }
Example #4
0
 public MapGoogleMarker(MapGooglePoint markerPoint, string label, MarkerColor mColor)
 {
     this._label = label;
     this._markerPoint = markerPoint;
     this._markerColor = mColor;
     this._markerStatus = MarkerStatus.plc;
 }
Example #5
0
        public void moveMap(int movePixelUpDown, int movePixelRightLeft, int currentZoomLevel)
        {
            MapGooglePoint tmpPoint = new MOBMAP.MapGoogle.MapGooglePoint(
            this.adjustLatByPixels(Convert.ToSingle(_centerPoint.latitude, CultureInfo.InvariantCulture.NumberFormat), movePixelUpDown, currentZoomLevel).ToString(CultureInfo.InvariantCulture.NumberFormat),
            this.adjustLonByPixels(Convert.ToSingle(_centerPoint.longitude, CultureInfo.InvariantCulture.NumberFormat), movePixelRightLeft, currentZoomLevel).ToString(CultureInfo.InvariantCulture.NumberFormat));

            _centerPoint = tmpPoint;
        }
Example #6
0
        public void moveMap(int movePixelUpDown, int movePixelRightLeft, int currentZoomLevel)
        {
            MapGooglePoint tmpPoint = new MOBMAP.MapGoogle.MapGooglePoint(
                this.adjustLatByPixels(Convert.ToSingle(_centerPoint.latitude, CultureInfo.InvariantCulture.NumberFormat), movePixelUpDown, currentZoomLevel).ToString(CultureInfo.InvariantCulture.NumberFormat),
                this.adjustLonByPixels(Convert.ToSingle(_centerPoint.longitude, CultureInfo.InvariantCulture.NumberFormat), movePixelRightLeft, currentZoomLevel).ToString(CultureInfo.InvariantCulture.NumberFormat));

            _centerPoint = tmpPoint;
        }
Example #7
0
 public MapGoogleViewport(MapGooglePoint centerPoint)
 {
     this._centerPoint = centerPoint;
 }
Example #8
0
 public MapGoogleMarker(MapGooglePoint markerPoint, MarkerSize mSize)
 {
     this._markerPoint  = markerPoint;
     this._markerSize   = mSize;
     this._markerStatus = MarkerStatus.ps;
 }
Example #9
0
 public MapGoogleMarker(MapGooglePoint markerPoint, string label)
 {
     this._markerPoint  = markerPoint;
     this._label        = label;
     this._markerStatus = MarkerStatus.pl;
 }
Example #10
0
        private MarkerStatus _markerStatus = MarkerStatus.p;   //status

        #endregion

        #region constructors
        public MapGoogleMarker(MapGooglePoint markerPoint)
        {
            this._markerPoint  = markerPoint;
            this._markerStatus = MarkerStatus.p;
        }
Example #11
0
 public MapGoogleMarker(MapGooglePoint markerPoint, MarkerSize mSize)
 {
     this._markerPoint = markerPoint;
     this._markerSize = mSize;
     this._markerStatus = MarkerStatus.ps;
 }
Example #12
0
 public MapGoogleMarker(MapGooglePoint markerPoint, MarkerColor mColor)
 {
     this._markerPoint = markerPoint;
     this._markerColor = mColor;
     this._markerStatus = MarkerStatus.pc;
 }
Example #13
0
        private MarkerStatus _markerStatus = MarkerStatus.p;//status

        #endregion

        #region constructors
        public MapGoogleMarker(MapGooglePoint markerPoint)
        {
            this._markerPoint = markerPoint;
            this._markerStatus = MarkerStatus.p;
        }
Example #14
0
 public MapGoogleViewport(MapGooglePoint centerPoint)
 {
     this._centerPoint = centerPoint;
 }