Ejemplo n.º 1
0
        public string SovietGetPicture(Point location)
        {
            GoogleMapImage newImage = new GoogleMapImage();

            newImage.GetUrl(location);
            newImage.DisplayPicture();
            return(newImage.getPath());
        }
Ejemplo n.º 2
0
        /// temporary
        public string getImgUrl()
        {
            GoogleMapImage img = new GoogleMapImage();
            Point          p   = new Point(32, 34);

            img.GetUrl(p);
            return(img.getPath());
        }