Esempio n. 1
0
 public GMap.NET.WindowsForms.Markers.GMarkerGoogle GetGMarkerGoogle(GMap.NET.WindowsForms.Markers.GMarkerGoogleType MarkerGoogleType, enumGeoPointType geodottype)
 {
     GMap.NET.WindowsForms.Markers.GMarkerGoogle marker = new GMap.NET.WindowsForms.Markers.GMarkerGoogle(Coordinates, MarkerGoogleType);
     //marker.ToolTipText = string.Format("{0}, {1} {2}", Text, ShowDegMiSec(Lat), ShowDegMiSec(Lng));
     marker.Tag = new CMBaseGeoPoint(geodottype);
     return(marker);
 }
Esempio n. 2
0
 public CustomAttribute(string LineName, int PointCount, bool IsVisible, GMap.NET.WindowsForms.Markers.GMarkerGoogleType type, Color lineColor)
 {
     this.LineName   = LineName;
     this.PointCount = PointCount;
     this.IsVisible  = IsVisible;
     this.LineStyle  = type;
     this.LineColor  = lineColor;
 }
Esempio n. 3
0
        public static GMap.NET.WindowsForms.Markers.GMarkerGoogle GetGMarkerGoogle(string markername, PointLatLng pointlatlng,
                                                                                   enumGeoPointType GeoDotType,
                                                                                   GMap.NET.WindowsForms.Markers.GMarkerGoogleType MarkerGoogleType)
        {
            GMap.NET.WindowsForms.Markers.GMarkerGoogle marker = new GMap.NET.WindowsForms.Markers.GMarkerGoogle(pointlatlng, MarkerGoogleType);
            //marker.ToolTipText = string.Format("{0}, {1} {2}", markername, ShowDegMiSec(pointlatlng.Lat), ShowDegMiSec(pointlatlng.Lng));
            marker.Tag = new CMBaseGeoPoint(GeoDotType);

            return(marker);
        }