打开BaiduMapTile\BaiduMapTile\bin\Debug文件夹下的BaiduMapTile.exe,选择框选下载地图瓦片即可,各个层级可选
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
//在js中调用ShowMessage函数需加这句
using System.Security.Permissions;
namespace BaiduMapTile
{
//在js中调用ShowMessage函数需加这句
[PermissionSet(SecurityAction.Demand, Name = "FullTrust")]
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
public partial class FormMain : Form
{
private int[] mZoom = new int[18];
private CheckBox[] mCheckBoxZoom = new CheckBox[18];
private TileDownloader mDownloader;
public FormMain()
{
InitializeComponent();
//在js中调用ShowMessage函数需加这句
webBrowser_map_online.ObjectForScripting = this;
//范围
this.radioButton_map_lng_lat.Checked = true;
this.radioButton_map_box.Checked = false;
//缩放级别
mCheckBoxZoom[0] = this.checkBox_z1;
mCheckBoxZoom[1] = this.checkBox_z2;
mCheckBoxZoom[2] = this.checkBox_z3;
mCheckBoxZoom[3] = this.checkBox_z4;
mCheckBoxZoom[4] = this.checkBox_z5;
mCheckBoxZoom[5] = this.checkBox_z6;
mCheckBoxZoom[6] = this.checkBox_z7;
mCheckBoxZoom[7] = this.checkBox_z8;
mCheckBoxZoom[8] = this.checkBox_z9;
mCheckBoxZoom[9] = this.checkBox_z10;
mCheckBoxZoom[10] = this.checkBox_z11;
mCheckBoxZoom[11] = this.checkBox_z12;
mCheckBoxZoom[12] = this.checkBox_z13;
mCheckBoxZoom[13] = this.checkBox_z14;
mCheckBoxZoom[14] = this.checkBox_z15;
mCheckBoxZoom[15] = this.checkBox_z16;
mCheckBoxZoom[16] = this.checkBox_z17;
mCheckBoxZoom[17] = this.checkBox_z18;
for (int i = 0; i < mCheckBoxZoom.Length; i )
{
mCheckBoxZoom[i].Checked = true;
}
//下载类型
this.radio_street_map.Checked = true;
//F:\project\cs\BaiduMapTile\html
string workPath = System.IO.Directory.GetCurrentDirectory();
//this.webBrowser_map_online.Url = new Uri(workPath "/html/online.html");
//this.webBrowser_offline.Url = new Uri(workPath "/html/offline.html");
this.webBrowser_map_online.Url = new Uri(workPath "/../../../html/在线地图.html");
this.textBox_maptile_dir.Text = workPath;
mDownloader = new TileDownloader(this);
}
//在js中调用此函数 begin
public void ShowMessage(string message)
{
MessageBox.Show("C# invoke ShowMessage: " message);
}
public void SetScale(double lng1, double lat1, double lng2, double lat2)
{
this.textBox_left_bottom_lng.Text = Convert.ToString(lng1);
this.textBox_left_bottom_lat.Text = Convert.ToString(lat1);
this.textBox_right_top_lng.Text = Convert.ToString(lng2);
this.textBox_right_top_lat.Text = Convert.ToString(lat2);
}
//end
public void SetBounds2(string lng1)
{
this.textBox_left_bottom_lng.Text = Convert.ToString(lng1);
}
private void button_start_Click(object sender, EventArgs e)
{
if (this.textBox_left_bottom_lng.Text == ""
|| this.textBox_left_bottom_lat.Text == ""
|| this.textBox_right_top_lng.Text == ""
|| this.textBox_right_top_lat.Text == "")
{
MessageBox.Show("请输入经纬度,或者划定要下载的区域");
return;
}
//经纬度范围
double lng = Convert.ToDouble(this.textBox_left_bottom_lng.Text);
double lat = Convert.ToDouble(this.textBox_left_bottom_lat.Text);
PointGeo leftBottomPoint = new PointGeo(lng, lat); // 左下角
lng = Convert.ToDouble(this.textBox_right_top_lng.Text);
lat = Convert.ToDouble(this.textBox_right_top_lat.Text);
PointGeo rightTopPoint = new PointGeo(lng, lat); // 右上角
if(leftBottomPoint.lng == rightTopPoint.lng
|| leftBottomPoint.lat == rightTopPoint.lat)
{
MessageBox.Show("两个经度或者纬度不能一样");
return;
}
//放大级别
List<int> zoomArray = new List<int>();
for (int i = 0; i < mCheckBoxZoom.Length; i )
{
if (mCheckBoxZoom[i].Checked)
{
zoomArray.Add(i 1);
}
}
if(zoomArray.Count == 0)
{
MessageBox.Show("请选择放大级别");
return;
}
//下载内容
int mapType = 0;
if(this.radio_street_map.Checked) //街道图
{
mapType = 0;
}
else if(this.radio_satellite_map.Checked) //卫星图
{
mapType = 1;
}
else
{
mapType = 0;
}
//线程数
int threadCnt = Convert.ToInt16(numericUpDown_downlaod_thread_cnt.Value);
//保存路径
String savePath = this.textBox_maptile_dir.Text;
if (savePath == null || savePath.Length == 0)
{
MessageBox.Show("请设置保存目录");
return;
}
this.toolStripStatusLabel_download_status.Text = "开始下载";
mDownloader.execute(savePath, leftBottomPoint, rightTopPoint, zoomArray, threadCnt, mapType);
this.button_start.Enabled = false;
this.button_pause.Enabled = true;
}
private void button_pause_Click(object sender, EventArgs e)
{
if (mDownloader != null)
{
mDownloader.stop();
}
this.button_pause.Text = "正在停止";
}
public delegate void SetStatusTextCallback(string msg);
public void setStatusText(string msg)
{
//把鼠标放上去看解释就知道了,就是防止创建控件以外的线程调用(.NET是类型安全的)
if (this.statusStrip.InvokeRequired)
{
//为当前控件指定委托
SetStatusTextCallback d = new SetStatusTextCallback(setStatusText);
this.Invoke(d, new object[] { msg });
//this.Invoke(new addms g(AddMsg), msg);
}
else
{
//被委托到主线程后真正执行的代码
//为什么会执行到这里?
//不好解释,大概是因为委托的主线程后,this.InvokeRequired=false了吧
this.toolStripStatusLabel_download_status.Text = msg;
}
}
public delegate void UpdateProgressCallback(int total, int completed, int state);
public void UpdateProgress(int total, int completed, int state)
{
if (this.statusStrip.InvokeRequired)
{
UpdateProgressCallback d = new UpdateProgressCallback(UpdateProgress);
this.Invoke(d, new object[] { total, completed, state });
return;
}
if (total == completed || state == TileDownloader.DOWNLOAD_STATE_STOP)
{
this.button_start.Enabled = true;
this.button_pause.Enabled = false;
if (total == completed)
{
this.toolStripStatusLabel_download_status.Text = "下载完成";
}
else
{
this.toolStripStatusLabel_download_status.Text = "下载停止";
}
this.button_pause.Text = "停止";
}
}
//在地图上画框
private void radioButton_map_box_CheckedChanged(object sender, EventArgs e)
{
this.textBox_left_bottom_lng.Enabled = false;
this.textBox_left_bottom_lat.Enabled = false;
this.textBox_right_top_lng.Enabled = false;
this.textBox_right_top_lat.Enabled = false;
this.webBrowser_map_online.Document.InvokeScript("OpenDrawRect");
}
//指定经纬度
private void radioButton_map_lng_lat_CheckedChanged(object sender, EventArgs e)
{
this.textBox_left_bottom_lng.Enabled = true;
this.textBox_left_bottom_lat.Enabled = true;
this.textBox_right_top_lng.Enabled = true;
this.textBox_right_top_lat.Enabled = true;
this.webBrowser_map_online.Document.InvokeScript("CloseDrawRect");
}
private void webBrowser_map_online_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
if (this.radioButton_map_box.Checked == true)
{
this.webBrowser_map_online.Document.InvokeScript("OpenDrawRect");
}
else
{
this.webBrowser_map_online.Document.InvokeScript("CloseDrawRect");
}
}
//设置保存路径
private void button_open_maptile_dir_Click(object sender, EventArgs e)
{
FolderBrowserDialog folderBrowser = new FolderBrowserDialog();
//folderBrowser.SelectedPath = @"c:/"; // 设置打开目录选择对话框时默认的目录
folderBrowser.SelectedPath = System.IO.Directory.GetCurrentDirectory();
folderBrowser.ShowNewFolderButton = true; //是否显示新建文件夹按钮
folderBrowser.Description = "请选择保存地图数据的目录";//描述弹出框功能
folderBrowser.RootFolder = Environment.SpecialFolder.MyComputer; // 打开到我的文档
if (folderBrowser.ShowDialog() == DialogResult.OK)
{
this.textBox_maptile_dir.Text = folderBrowser.SelectedPath;
}
}
}
}
资源文件列表
BaiduMapTile/BaiduMapTile/BaiduMapTile.csproj , 4567
BaiduMapTile/BaiduMapTile/bin/Debug/BaiduMapTile.exe , 34816
BaiduMapTile/BaiduMapTile/bin/Debug/BaiduMapTile.pdb , 58880
BaiduMapTile/BaiduMapTile/bin/Debug/BaiduMapTile.vshost.exe , 22704
BaiduMapTile/BaiduMapTile/bin/Debug/BaiduMapTile.vshost.exe.manifest , 490
BaiduMapTile/BaiduMapTile/bin/Debug/html/images/bg_drawing_tool.png , 5846
BaiduMapTile/BaiduMapTile/bin/Debug/html/images/blank.gif , 49
BaiduMapTile/BaiduMapTile/bin/Debug/html/images/closedhand.cur , 326
BaiduMapTile/BaiduMapTile/bin/Debug/html/images/copyright_logo.png , 2586
BaiduMapTile/BaiduMapTile/bin/Debug/html/images/iw3.png , 7719
BaiduMapTile/BaiduMapTile/bin/Debug/html/images/iws3.png , 8799
BaiduMapTile/BaiduMapTile/bin/Debug/html/images/iw_close1d3.gif , 73
BaiduMapTile/BaiduMapTile/bin/Debug/html/images/iw_minus.gif , 73
BaiduMapTile/BaiduMapTile/bin/Debug/html/images/iw_plus.gif , 76
BaiduMapTile/BaiduMapTile/bin/Debug/html/images/iw_plus1d3.gif , 59
BaiduMapTile/BaiduMapTile/bin/Debug/html/images/mapctrls1d3.gif , 899
BaiduMapTile/BaiduMapTile/bin/Debug/html/images/mapctrls2d0.png , 11596
BaiduMapTile/BaiduMapTile/bin/Debug/html/images/marker_red_sprite.png , 1797
BaiduMapTile/BaiduMapTile/bin/Debug/html/images/openhand.cur , 326
BaiduMapTile/BaiduMapTile/bin/Debug/html/images/phone.png , 983
BaiduMapTile/BaiduMapTile/bin/Debug/html/images/ruler.cur , 4286
BaiduMapTile/BaiduMapTile/bin/Debug/html/images/spotmkrs.png , 109418
BaiduMapTile/BaiduMapTile/bin/Debug/html/images/st-close.png , 382
BaiduMapTile/BaiduMapTile/bin/Debug/html/images/st-navictrl.png , 9203
BaiduMapTile/BaiduMapTile/bin/Debug/html/images/st-scout.png , 2949
BaiduMapTile/BaiduMapTile/bin/Debug/html/images/stop_icon.png , 363
BaiduMapTile/BaiduMapTile/bin/Debug/html/js/apiv1.3.min.js , 111280
BaiduMapTile/BaiduMapTile/bin/Debug/html/js/apiv2.0.min.js , 95098
BaiduMapTile/BaiduMapTile/bin/Debug/html/js/apiv2.0_satellite.js , 172471
BaiduMapTile/BaiduMapTile/bin/Debug/html/js/apiv2.0_street.js , 172475
BaiduMapTile/BaiduMapTile/bin/Debug/html/js/AreaRestriction.js , 4462
BaiduMapTile/BaiduMapTile/bin/Debug/html/js/DrawingManager.js , 60325
BaiduMapTile/BaiduMapTile/bin/Debug/html/js/DrawingManager_one_rect.js , 61011
BaiduMapTile/BaiduMapTile/bin/Debug/html/js/GeoUtils.js , 17288
BaiduMapTile/BaiduMapTile/bin/Debug/html/js/getmodules , 628811
BaiduMapTile/BaiduMapTile/bin/Debug/html/map.txt , 25258
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/1/0/0.jpg , 6168
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/1/0/0.png , 798
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/10/197/73.jpg , 21286
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/10/197/73.png , 19588
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/11/395/147.jpg , 22984
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/11/395/147.png , 19450
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/12/790/294.jpg , 24322
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/12/790/294.png , 18441
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/13/1581/589.jpg , 24730
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/13/1581/589.png , 13534
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/14/3163/1178.jpg , 19219
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/14/3163/1178.png , 12307
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/15/6326/2356.jpg , 18302
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/15/6326/2356.png , 16439
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/15/6326/2357.jpg , 17651
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/15/6326/2357.png , 16215
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/15/6327/2356.jpg , 19704
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/15/6327/2356.png , 17080
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/15/6327/2357.jpg , 19566
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/15/6327/2357.png , 20072
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/16/12653/4713.jpg , 12830
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/16/12653/4713.png , 11673
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/16/12653/4714.jpg , 14531
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/16/12653/4714.png , 13518
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/16/12654/4713.jpg , 17208
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/16/12654/4713.png , 16590
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/16/12654/4714.jpg , 18029
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/16/12654/4714.png , 20683
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/16/12655/4713.jpg , 19714
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/16/12655/4713.png , 14190
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/16/12655/4714.jpg , 19716
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/16/12655/4714.png , 15174
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25307/9426.jpg , 15312
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25307/9426.png , 9664
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25307/9427.jpg , 14104
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25307/9427.png , 9936
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25307/9428.jpg , 14907
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25307/9428.png , 10546
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25307/9429.jpg , 14891
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25307/9429.png , 11776
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25308/9426.jpg , 14255
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25308/9426.png , 11124
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25308/9427.jpg , 16614
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25308/9427.png , 12649
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25308/9428.jpg , 18039
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25308/9428.png , 13308
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25308/9429.jpg , 16096
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25308/9429.png , 13025
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25309/9426.jpg , 16014
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25309/9426.png , 10739
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25309/9427.jpg , 15745
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25309/9427.png , 11928
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25309/9428.jpg , 16702
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25309/9428.png , 11113
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25309/9429.jpg , 15072
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25309/9429.png , 11424
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25310/9426.jpg , 18397
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25310/9426.png , 13134
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25310/9427.jpg , 17646
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25310/9427.png , 13110
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25310/9428.jpg , 17645
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25310/9428.png , 13472
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25310/9429.jpg , 18308
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/17/25310/9429.png , 14568
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50615/18853.jpg , 12142
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50615/18853.png , 8417
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50615/18854.jpg , 12643
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50615/18854.png , 8858
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50615/18855.jpg , 12038
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50615/18855.png , 9228
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50615/18856.jpg , 12324
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50615/18856.png , 6814
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50615/18857.jpg , 12021
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50615/18857.png , 6469
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50615/18858.jpg , 12662
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50615/18858.png , 7872
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50615/18859.jpg , 14216
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50615/18859.png , 10657
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50616/18853.jpg , 11353
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50616/18853.png , 5742
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50616/18854.jpg , 15425
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50616/18854.png , 8302
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50616/18855.jpg , 16735
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50616/18855.png , 6725
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50616/18856.jpg , 16555
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50616/18856.png , 7901
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50616/18857.jpg , 16430
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50616/18857.png , 10376
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50616/18858.jpg , 17338
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50616/18858.png , 9581
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50616/18859.jpg , 11267
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50616/18859.png , 6242
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50617/18853.jpg , 12433
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50617/18853.png , 8716
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50617/18854.jpg , 12855
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50617/18854.png , 8182
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50617/18855.jpg , 13295
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50617/18855.png , 6444
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50617/18856.jpg , 14840
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50617/18856.png , 8476
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50617/18857.jpg , 15307
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50617/18857.png , 11238
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50617/18858.jpg , 16091
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50617/18858.png , 12964
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50617/18859.jpg , 11840
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50617/18859.png , 8520
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50618/18853.jpg , 12798
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50618/18853.png , 6562
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50618/18854.jpg , 13783
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50618/18854.png , 7620
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50618/18855.jpg , 15970
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50618/18855.png , 8214
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50618/18856.jpg , 15230
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50618/18856.png , 7760
BaiduMapTile/BaiduMapTile/bin/Debug/html/maptile/18/50618/18857.jpg , 16378
最多只能显示150条信息!
