• 大小: 0.05M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 地图  google  实例  下载  

资源简介


资源截图

代码片段和文件信息

using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.IO;
using System.Threading;
using System.Windows.Forms;
using System.Net;

namespace GoogleMapDownLoader
{
    public partial class Form1 : Form
    {
        ArrayList _waittodownload = new ArrayList();  //待下载图片集合
        string _path=““; //保存路径
        int _thread = 0;  //下载线程数目
        int _downloadnum = 0;  //已下载图片张数
        int _zoom=0;  //缩放级别

        int _totalwidth = 0;  //地图合并之后的宽度
        int _totalheight = 0;  //地图合并之后的高度

        DateTime _startTime = DateTime.Now;  //开始下载时间
        public Form1()
        {
            InitializeComponent();
        }
   

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      22016  2014-02-19 12:00  GoogleMapDownLoader\bin\Debug\GoogleMapDownLoader.exe

     文件      36352  2014-02-19 12:00  GoogleMapDownLoader\bin\Debug\GoogleMapDownLoader.pdb

     文件      11600  2014-02-19 11:58  GoogleMapDownLoader\bin\Debug\GoogleMapDownLoader.vshost.exe

     文件        490  2010-03-17 22:39  GoogleMapDownLoader\bin\Debug\GoogleMapDownLoader.vshost.exe.manifest

     文件      15012  2014-02-19 09:54  GoogleMapDownLoader\Form1.cs

     文件      20792  2014-02-19 09:33  GoogleMapDownLoader\Form1.Designer.cs

     文件       5817  2014-02-19 09:33  GoogleMapDownLoader\Form1.resx

     文件       3697  2014-02-18 10:55  GoogleMapDownLoader\GoogleMapDownLoader.csproj

     文件       5359  2014-02-19 09:15  GoogleMapDownLoader\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache

     文件       6435  2014-02-19 12:00  GoogleMapDownLoader\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件       1086  2014-02-19 12:00  GoogleMapDownLoader\obj\x86\Debug\GoogleMapDownLoader.csproj.FileListAbsolute.txt

     文件        975  2014-02-19 12:00  GoogleMapDownLoader\obj\x86\Debug\GoogleMapDownLoader.csproj.GenerateResource.Cache

     文件      22016  2014-02-19 12:00  GoogleMapDownLoader\obj\x86\Debug\GoogleMapDownLoader.exe

     文件        180  2014-02-19 12:00  GoogleMapDownLoader\obj\x86\Debug\GoogleMapDownLoader.Form1.resources

     文件      36352  2014-02-19 12:00  GoogleMapDownLoader\obj\x86\Debug\GoogleMapDownLoader.pdb

     文件        180  2014-02-19 12:00  GoogleMapDownLoader\obj\x86\Debug\GoogleMapDownLoader.Properties.Resources.resources

     文件        511  2014-02-18 10:14  GoogleMapDownLoader\Program.cs

     文件       1450  2014-02-18 10:14  GoogleMapDownLoader\Properties\AssemblyInfo.cs

     文件       2868  2014-02-18 10:14  GoogleMapDownLoader\Properties\Resources.Designer.cs

     文件       5612  2014-02-18 10:14  GoogleMapDownLoader\Properties\Resources.resx

     文件       1106  2014-02-18 10:14  GoogleMapDownLoader\Properties\Settings.Designer.cs

     文件        249  2014-02-18 10:14  GoogleMapDownLoader\Properties\Settings.settings

     目录          0  2014-02-18 10:14  GoogleMapDownLoader\obj\x86\Debug\TempPE

     目录          0  2014-02-19 12:00  GoogleMapDownLoader\obj\x86\Debug

     目录          0  2014-02-19 12:00  GoogleMapDownLoader\bin\Debug

     目录          0  2014-02-18 10:14  GoogleMapDownLoader\obj\x86

     目录          0  2014-02-18 10:14  GoogleMapDownLoader\bin

     目录          0  2014-02-18 10:14  GoogleMapDownLoader\obj

     目录          0  2014-02-18 10:14  GoogleMapDownLoader\Properties

     目录          0  2014-02-18 10:14  GoogleMapDownLoader

............此处省略3个文件信息

评论

共有 条评论