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