Esempio n. 1
0
 public WebMapBackgrnd(IkarusMapControl map)
 {
     mapControl = map;
     if (me.GoogleMapsCookie == null)
         imageProxy = new MicrosoftProxy();
     else
         imageProxy = new GoogleProxy(me.GoogleMapsCookie);
     
     imageProxy.listeners += notify;
     
     geo = new GeoPos(new WayPoint("gps", -6.003753, 37.391162), 10);
 }
Esempio n. 2
0
        public WebMapBackgrnd(IkarusMapControl map)
        {
            mapControl = map;
            if (me.GoogleMapsCookie == null)
            {
                imageProxy = new MicrosoftProxy();
            }
            else
            {
                imageProxy = new GoogleProxy(me.GoogleMapsCookie);
            }

            imageProxy.listeners += notify;

            geo = new GeoPos(new WayPoint("gps", -6.003753, 37.391162), 10);
        }
Esempio n. 3
0
 public TaskImageDisk(ImageProxy imageProxy)
 {
     this.imageProxy = imageProxy;
     queue = new Queue<ImageQuery>();
     inet = new TaskImageInet(imageProxy);
 }
Esempio n. 4
0
 public TaskImageInet(ImageProxy imageProxy)
 {
     this.imageProxy = imageProxy;
     queue           = new Queue <ImageQuery>();
 }
Esempio n. 5
0
 public TaskImageInet(ImageProxy imageProxy)
 {
     this.imageProxy = imageProxy;
     queue = new Queue<ImageQuery>();
 }
Esempio n. 6
0
 public TaskImageDisk(ImageProxy imageProxy)
 {
     this.imageProxy = imageProxy;
     queue           = new Queue <ImageQuery>();
     inet            = new TaskImageInet(imageProxy);
 }