实例介绍
对GMap.Net1.9.2源码进行了修改,增加了百度普通地图,高德普通地图、卫星地图、混合地图,增加了是否显示瓦片加载错误的属性开关。把Demo中GMarkerRect、CMarkerCircel、CMarkerArrow集成到控件中,使之能够添加矩形、圆、箭头等GMapMarker。修改了CMarkerCircel、CMarkerArrow、CMarkerCross源码,使之能够通过设置IsHitTestVisible属性响应OnMarkerEnter、OnMarkerLeave、OnMarkerClick等事件。可以在vs2010~vs2017中编译使用。
【实例截图】
【核心代码】
4744300845194922502.rar
└── GMap.NET-master
├── Demo
│ ├── Build
│ │ └── Release
│ │ ├── Demo.WindowsForms.exe
│ │ ├── Demo.WindowsForms.exe.config
│ │ ├── Demo.WindowsPresentation.exe
│ │ ├── Demo.WindowsPresentation.exe.config
│ │ ├── EntityFramework.dll
│ │ ├── EntityFramework.SqlServer.dll
│ │ ├── EntityFramework.SqlServer.xml
│ │ ├── EntityFramework.xml
│ │ ├── GMap.NET.Core.dll
│ │ ├── GMap.NET.WindowsForms.dll
│ │ ├── GMap.NET.WindowsPresentation.dll
│ │ ├── GMap.NET.WindowsPresentation.xml
│ │ ├── Newtonsoft.Json.dll
│ │ ├── Newtonsoft.Json.xml
│ │ ├── System.Data.SQLite.dll
│ │ ├── System.Data.SQLite.EF6.dll
│ │ ├── System.Data.SQLite.Linq.dll
│ │ ├── System.Data.SQLite.xml
│ │ ├── x64
│ │ │ └── SQLite.Interop.dll
│ │ └── x86
│ │ └── SQLite.Interop.dll
│ ├── Demo.WindowsForms
│ │ ├── app.config
│ │ ├── bin
│ │ ├── BSE.Windows.Forms
│ │ │ ├── ProgressBar
│ │ │ │ ├── ProgressBar.cs
│ │ │ │ ├── ProgressBar.Designer.cs
│ │ │ │ └── ToolStripProgressBar.cs
│ │ │ ├── Renderer
│ │ │ │ ├── BseColorTable.cs
│ │ │ │ ├── BseRenderer.cs
│ │ │ │ ├── ColorTableBlack.cs
│ │ │ │ ├── ColorTableBlue.cs
│ │ │ │ ├── Office2007BlackColorTable.cs
│ │ │ │ ├── Office2007BlueColorTable.cs
│ │ │ │ ├── Office2007Renderer.cs
│ │ │ │ ├── Office2007SilverColorTable.cs
│ │ │ │ ├── OfficeColorTable.cs
│ │ │ │ └── ProfessionalColorTable.cs
│ │ │ ├── Resources
│ │ │ │ ├── ChevronDown.png
│ │ │ │ ├── ChevronLeft.png
│ │ │ │ ├── ChevronRight.png
│ │ │ │ ├── ChevronUp.png
│ │ │ │ ├── closePanel.png
│ │ │ │ ├── Collapse_h.jpg
│ │ │ │ ├── Collapse.jpg
│ │ │ │ ├── Expand_h.jpg
│ │ │ │ ├── Expand.jpg
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ └── Resources.resx
│ │ │ ├── Splitter
│ │ │ │ ├── Splitter.cs
│ │ │ │ └── Splitter.Designer.cs
│ │ │ └── XPander
│ │ │ ├── BasePanel.cs
│ │ │ ├── CaptionStyle.cs
│ │ │ ├── ColorSchemeChangeEventArgs.cs
│ │ │ ├── ColorScheme.cs
│ │ │ ├── Constants.cs
│ │ │ ├── CustomColors.cs
│ │ │ ├── CustomPanelColors.cs
│ │ │ ├── CustomXPanderPanelColors.cs
│ │ │ ├── DisplayInformation.cs
│ │ │ ├── HoverStateChangeEventArgs.cs
│ │ │ ├── HoverState.cs
│ │ │ ├── IPanel.cs
│ │ │ ├── PanelColorsBlack.cs
│ │ │ ├── PanelColorsBlue.cs
│ │ │ ├── PanelColorsBse.cs
│ │ │ ├── PanelColors.cs
│ │ │ ├── PanelColorsOffice2007Black.cs
│ │ │ ├── PanelColorsOffice2007Blue.cs
│ │ │ ├── PanelColorsOffice2007Silver.cs
│ │ │ ├── PanelColorsOffice.cs
│ │ │ ├── PanelColorsRed.cs
│ │ │ ├── Panel.cs
│ │ │ ├── Panel.Designer.cs
│ │ │ ├── Panel.resx
│ │ │ ├── PanelSettingsManager.cs
│ │ │ ├── PanelStyleChangeEventArgs.cs
│ │ │ ├── PanelStyle.cs
│ │ │ ├── UseAntiAlias.cs
│ │ │ ├── UseClearTypeGridFit.cs
│ │ │ ├── XPanderPanel.cs
│ │ │ ├── XPanderPanel.Designer.cs
│ │ │ ├── XPanderPanelList.cs
│ │ │ ├── XPanderPanelList.Designer.cs
│ │ │ ├── XPanderPanelList.resx
│ │ │ ├── XPanderPanel.resx
│ │ │ └── XPanderStateChangeEventArgs.cs
│ │ ├── CustomMarkers
│ │ │ ├── GMapMarkerCircle.cs
│ │ │ ├── GMapMarkerRect.cs
│ │ │ └── GMarkerArrow.cs
│ │ ├── Demo.WindowsForms.csproj
│ │ ├── Forms
│ │ │ ├── MainForm.cs
│ │ │ ├── MainForm.Designer.cs
│ │ │ ├── MainForm.resx
│ │ │ ├── Message.cs
│ │ │ ├── Message.Designer.cs
│ │ │ ├── Message.resx
│ │ │ ├── StaticImage.cs
│ │ │ ├── StaticImage.Designer.cs
│ │ │ └── StaticImage.resx
│ │ ├── leafletjs
│ │ │ ├── dist
│ │ │ │ └── images
│ │ │ ├── gmap.html
│ │ │ └── gmap-lt.html
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── BSE.Windows.Forms.Panel.resources
│ │ │ │ ├── BSE.Windows.Forms.XPanderPanelList.resources
│ │ │ │ ├── BSE.Windows.Forms.XPanderPanel.resources
│ │ │ │ ├── Demo.WindowsForms.csproj.FileListAbsolute.txt
│ │ │ │ ├── Demo.WindowsForms.csproj.GenerateResource.Cache
│ │ │ │ ├── Demo.WindowsForms.csprojResolveAssemblyReference.cache
│ │ │ │ ├── Demo.WindowsForms.exe
│ │ │ │ ├── Demo.WindowsForms.Forms.Message.resources
│ │ │ │ ├── Demo.WindowsForms.MainForm.resources
│ │ │ │ ├── Demo.WindowsForms.pdb
│ │ │ │ ├── Demo.WindowsForms.Properties.Resources.resources
│ │ │ │ ├── Demo.WindowsForms.StaticImage.resources
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ └── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── Release
│ │ │ │ ├── BSE.Windows.Forms.Panel.resources
│ │ │ │ ├── BSE.Windows.Forms.XPanderPanelList.resources
│ │ │ │ ├── BSE.Windows.Forms.XPanderPanel.resources
│ │ │ │ ├── Demo.WindowsForms.csproj.FileListAbsolute.txt
│ │ │ │ ├── Demo.WindowsForms.csproj.GenerateResource.Cache
│ │ │ │ ├── Demo.WindowsForms.csprojResolveAssemblyReference.cache
│ │ │ │ ├── Demo.WindowsForms.exe
│ │ │ │ ├── Demo.WindowsForms.Forms.Message.resources
│ │ │ │ ├── Demo.WindowsForms.MainForm.resources
│ │ │ │ ├── Demo.WindowsForms.Properties.Resources.resources
│ │ │ │ ├── Demo.WindowsForms.StaticImage.resources
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ └── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── v4.0-Debug
│ │ │ │ ├── BSE.Windows.Forms.Panel.resources
│ │ │ │ ├── BSE.Windows.Forms.XPanderPanelList.resources
│ │ │ │ ├── BSE.Windows.Forms.XPanderPanel.resources
│ │ │ │ ├── build.force
│ │ │ │ ├── Demo.WindowsForms.csproj.FileListAbsolute.txt
│ │ │ │ ├── Demo.WindowsForms.csproj.GenerateResource.Cache
│ │ │ │ ├── Demo.WindowsForms.csprojResolveAssemblyReference.cache
│ │ │ │ ├── Demo.WindowsForms.exe
│ │ │ │ ├── Demo.WindowsForms.Forms.Message.resources
│ │ │ │ ├── Demo.WindowsForms.MainForm.resources
│ │ │ │ ├── Demo.WindowsForms.pdb
│ │ │ │ ├── Demo.WindowsForms.Properties.Resources.resources
│ │ │ │ ├── Demo.WindowsForms.StaticImage.resources
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ └── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ └── v4.0-Release
│ │ │ ├── BSE.Windows.Forms.Panel.resources
│ │ │ ├── BSE.Windows.Forms.XPanderPanelList.resources
│ │ │ ├── BSE.Windows.Forms.XPanderPanel.resources
│ │ │ ├── build.force
│ │ │ ├── Demo.WindowsForms.csproj.FileListAbsolute.txt
│ │ │ ├── Demo.WindowsForms.csproj.GenerateResource.Cache
│ │ │ ├── Demo.WindowsForms.csprojResolveAssemblyReference.cache
│ │ │ ├── Demo.WindowsForms.exe
│ │ │ ├── Demo.WindowsForms.Forms.Message.resources
│ │ │ ├── Demo.WindowsForms.MainForm.resources
│ │ │ ├── Demo.WindowsForms.Properties.Resources.resources
│ │ │ ├── Demo.WindowsForms.StaticImage.resources
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── packages.config
│ │ ├── Properties
│ │ │ ├── app.manifest
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ └── Resources.resx
│ │ ├── Resources
│ │ │ └── ImageReady.ico
│ │ ├── sn.snk
│ │ └── Source
│ │ ├── DemoStuff.cs
│ │ ├── Map.cs
│ │ ├── Program.cs
│ │ └── SQLiteIpCache.cs
│ ├── Demo.WindowsMobile
│ │ ├── Demo.WindowsMobile.csproj
│ │ ├── Forms
│ │ │ ├── GPS.cs
│ │ │ ├── GPS.Designer.cs
│ │ │ ├── GPS.resx
│ │ │ ├── MainForm.cs
│ │ │ ├── MainForm.Designer.cs
│ │ │ ├── MainForm.resx
│ │ │ ├── Search.cs
│ │ │ ├── Search.designer.cs
│ │ │ ├── Search.resx
│ │ │ ├── Transport.cs
│ │ │ ├── Transport.Designer.cs
│ │ │ └── Transport.resx
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ └── Resources.resx
│ │ ├── Resources
│ │ │ └── ImageReady.ico
│ │ └── Source
│ │ ├── HookKeys.cs
│ │ └── Program.cs
│ ├── Demo.WindowsPresentation
│ │ ├── app.config
│ │ ├── bin
│ │ ├── Controls
│ │ │ ├── TrolleyTooltip.xaml
│ │ │ └── TrolleyTooltip.xaml.cs
│ │ ├── CustomMarkers
│ │ │ ├── bigMarkerGreen.png
│ │ │ ├── CircleVisual.cs
│ │ │ ├── Circle.xaml
│ │ │ ├── Circle.xaml.cs
│ │ │ ├── Cross.xaml
│ │ │ ├── Cross.xaml.cs
│ │ │ ├── CustomMarkerDemo.xaml
│ │ │ ├── CustomMarkerDemo.xaml.cs
│ │ │ ├── CustomMarkerRed.xaml
│ │ │ ├── CustomMarkerRed.xaml.cs
│ │ │ ├── red-dot.png
│ │ │ ├── Test.xaml
│ │ │ └── Test.xaml.cs
│ │ ├── Demo.WindowsPresentation.csproj
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── Controls
│ │ │ │ │ ├── TrolleyTooltip.baml
│ │ │ │ │ ├── TrolleyTooltip.g.cs
│ │ │ │ │ └── TrolleyTooltip.g.i.cs
│ │ │ │ ├── CustomMarkers
│ │ │ │ │ ├── Circle.baml
│ │ │ │ │ ├── Circle.g.cs
│ │ │ │ │ ├── Circle.g.i.cs
│ │ │ │ │ ├── Cross.baml
│ │ │ │ │ ├── Cross.g.cs
│ │ │ │ │ ├── Cross.g.i.cs
│ │ │ │ │ ├── CustomMarkerDemo.baml
│ │ │ │ │ ├── CustomMarkerDemo.g.cs
│ │ │ │ │ ├── CustomMarkerDemo.g.i.cs
│ │ │ │ │ ├── CustomMarkerRed.baml
│ │ │ │ │ ├── CustomMarkerRed.g.cs
│ │ │ │ │ ├── CustomMarkerRed.g.i.cs
│ │ │ │ │ ├── Test.baml
│ │ │ │ │ ├── Test.g.cs
│ │ │ │ │ └── Test.g.i.cs
│ │ │ │ ├── Demo.WindowsPresentation.csproj.FileListAbsolute.txt
│ │ │ │ ├── Demo.WindowsPresentation.csproj.GenerateResource.Cache
│ │ │ │ ├── Demo.WindowsPresentation.csprojResolveAssemblyReference.cache
│ │ │ │ ├── Demo.WindowsPresentation.exe
│ │ │ │ ├── Demo.WindowsPresentation.g.resources
│ │ │ │ ├── Demo.WindowsPresentation_MarkupCompile.cache
│ │ │ │ ├── Demo.WindowsPresentation_MarkupCompile.i.cache
│ │ │ │ ├── Demo.WindowsPresentation_MarkupCompile.i.lref
│ │ │ │ ├── Demo.WindowsPresentation_MarkupCompile.lref
│ │ │ │ ├── Demo.WindowsPresentation.pdb
│ │ │ │ ├── Demo.WindowsPresentation.Properties.Resources.resources
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GeneratedInternalTypeHelper.g.cs
│ │ │ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ │ │ ├── TempPE
│ │ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ │ └── Windows
│ │ │ │ ├── MainWindow.baml
│ │ │ │ ├── MainWindow.g.cs
│ │ │ │ ├── MainWindow.g.i.cs
│ │ │ │ ├── Message.baml
│ │ │ │ ├── Message.g.cs
│ │ │ │ └── Message.g.i.cs
│ │ │ ├── Release
│ │ │ │ ├── build.force
│ │ │ │ ├── Controls
│ │ │ │ │ ├── TrolleyTooltip.baml
│ │ │ │ │ ├── TrolleyTooltip.g.cs
│ │ │ │ │ └── TrolleyTooltip.g.i.cs
│ │ │ │ ├── CustomMarkers
│ │ │ │ │ ├── Circle.baml
│ │ │ │ │ ├── Circle.g.cs
│ │ │ │ │ ├── Circle.g.i.cs
│ │ │ │ │ ├── Cross.baml
│ │ │ │ │ ├── Cross.g.cs
│ │ │ │ │ ├── Cross.g.i.cs
│ │ │ │ │ ├── CustomMarkerDemo.baml
│ │ │ │ │ ├── CustomMarkerDemo.g.cs
│ │ │ │ │ ├── CustomMarkerDemo.g.i.cs
│ │ │ │ │ ├── CustomMarkerRed.baml
│ │ │ │ │ ├── CustomMarkerRed.g.cs
│ │ │ │ │ ├── CustomMarkerRed.g.i.cs
│ │ │ │ │ ├── Test.baml
│ │ │ │ │ ├── Test.g.cs
│ │ │ │ │ └── Test.g.i.cs
│ │ │ │ ├── Demo.WindowsPresentation.csproj.FileListAbsolute.txt
│ │ │ │ ├── Demo.WindowsPresentation.csproj.GenerateResource.Cache
│ │ │ │ ├── Demo.WindowsPresentation.csprojResolveAssemblyReference.cache
│ │ │ │ ├── Demo.WindowsPresentation.exe
│ │ │ │ ├── Demo.WindowsPresentation.g.resources
│ │ │ │ ├── Demo.WindowsPresentation_MarkupCompile.cache
│ │ │ │ ├── Demo.WindowsPresentation_MarkupCompile.i.cache
│ │ │ │ ├── Demo.WindowsPresentation_MarkupCompile.i.lref
│ │ │ │ ├── Demo.WindowsPresentation_MarkupCompile.lref
│ │ │ │ ├── Demo.WindowsPresentation.Properties.Resources.resources
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GeneratedInternalTypeHelper.g.cs
│ │ │ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ │ │ ├── TempPE
│ │ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ │ └── Windows
│ │ │ │ ├── MainWindow.baml
│ │ │ │ ├── MainWindow.g.cs
│ │ │ │ ├── MainWindow.g.i.cs
│ │ │ │ ├── Message.baml
│ │ │ │ ├── Message.g.cs
│ │ │ │ └── Message.g.i.cs
│ │ │ ├── v4.0-Debug
│ │ │ │ ├── build.force
│ │ │ │ ├── Controls
│ │ │ │ │ ├── TrolleyTooltip.baml
│ │ │ │ │ ├── TrolleyTooltip.g.cs
│ │ │ │ │ └── TrolleyTooltip.g.i.cs
│ │ │ │ ├── CustomMarkers
│ │ │ │ │ ├── Circle.baml
│ │ │ │ │ ├── Circle.g.cs
│ │ │ │ │ ├── Circle.g.i.cs
│ │ │ │ │ ├── Cross.baml
│ │ │ │ │ ├── Cross.g.cs
│ │ │ │ │ ├── Cross.g.i.cs
│ │ │ │ │ ├── CustomMarkerDemo.baml
│ │ │ │ │ ├── CustomMarkerDemo.g.cs
│ │ │ │ │ ├── CustomMarkerDemo.g.i.cs
│ │ │ │ │ ├── CustomMarkerRed.baml
│ │ │ │ │ ├── CustomMarkerRed.g.cs
│ │ │ │ │ ├── CustomMarkerRed.g.i.cs
│ │ │ │ │ ├── Test.baml
│ │ │ │ │ ├── Test.g.cs
│ │ │ │ │ └── Test.g.i.cs
│ │ │ │ ├── Demo.WindowsPresentation.csproj.FileListAbsolute.txt
│ │ │ │ ├── Demo.WindowsPresentation.csproj.GenerateResource.Cache
│ │ │ │ ├── Demo.WindowsPresentation.csprojResolveAssemblyReference.cache
│ │ │ │ ├── Demo.WindowsPresentation.exe
│ │ │ │ ├── Demo.WindowsPresentation.g.resources
│ │ │ │ ├── Demo.WindowsPresentation_MarkupCompile.cache
│ │ │ │ ├── Demo.WindowsPresentation_MarkupCompile.i.cache
│ │ │ │ ├── Demo.WindowsPresentation_MarkupCompile.i.lref
│ │ │ │ ├── Demo.WindowsPresentation_MarkupCompile.lref
│ │ │ │ ├── Demo.WindowsPresentation.pdb
│ │ │ │ ├── Demo.WindowsPresentation.Properties.Resources.resources
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GeneratedInternalTypeHelper.g.cs
│ │ │ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ │ │ ├── TempPE
│ │ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ │ └── Windows
│ │ │ │ ├── MainWindow.baml
│ │ │ │ ├── MainWindow.g.cs
│ │ │ │ ├── MainWindow.g.i.cs
│ │ │ │ ├── Message.baml
│ │ │ │ ├── Message.g.cs
│ │ │ │ └── Message.g.i.cs
│ │ │ └── v4.0-Release
│ │ │ ├── build.force
│ │ │ ├── Controls
│ │ │ │ ├── TrolleyTooltip.baml
│ │ │ │ ├── TrolleyTooltip.g.cs
│ │ │ │ └── TrolleyTooltip.g.i.cs
│ │ │ ├── CustomMarkers
│ │ │ │ ├── Circle.baml
│ │ │ │ ├── Circle.g.cs
│ │ │ │ ├── Circle.g.i.cs
│ │ │ │ ├── Cross.baml
│ │ │ │ ├── Cross.g.cs
│ │ │ │ ├── Cross.g.i.cs
│ │ │ │ ├── CustomMarkerDemo.baml
│ │ │ │ ├── CustomMarkerDemo.g.cs
│ │ │ │ ├── CustomMarkerDemo.g.i.cs
│ │ │ │ ├── CustomMarkerRed.baml
│ │ │ │ ├── CustomMarkerRed.g.cs
│ │ │ │ ├── CustomMarkerRed.g.i.cs
│ │ │ │ ├── Test.baml
│ │ │ │ ├── Test.g.cs
│ │ │ │ └── Test.g.i.cs
│ │ │ ├── Demo.WindowsPresentation.csproj.FileListAbsolute.txt
│ │ │ ├── Demo.WindowsPresentation.csproj.GenerateResource.Cache
│ │ │ ├── Demo.WindowsPresentation.csprojResolveAssemblyReference.cache
│ │ │ ├── Demo.WindowsPresentation.exe
│ │ │ ├── Demo.WindowsPresentation.g.resources
│ │ │ ├── Demo.WindowsPresentation_MarkupCompile.cache
│ │ │ ├── Demo.WindowsPresentation_MarkupCompile.i.cache
│ │ │ ├── Demo.WindowsPresentation_MarkupCompile.i.lref
│ │ │ ├── Demo.WindowsPresentation_MarkupCompile.lref
│ │ │ ├── Demo.WindowsPresentation.Properties.Resources.resources
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GeneratedInternalTypeHelper.g.cs
│ │ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ │ ├── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ └── Windows
│ │ │ ├── MainWindow.baml
│ │ │ ├── MainWindow.g.cs
│ │ │ ├── MainWindow.g.i.cs
│ │ │ ├── Message.baml
│ │ │ ├── Message.g.cs
│ │ │ └── Message.g.i.cs
│ │ ├── packages.config
│ │ ├── Properties
│ │ │ ├── app.manifest
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ └── Resources.resx
│ │ ├── Resources
│ │ │ ├── ImageReady.ico
│ │ │ ├── zoom+.png
│ │ │ └── zoom-.png
│ │ ├── Service References
│ │ ├── sn.snk
│ │ ├── Source
│ │ │ ├── App.cs
│ │ │ └── Map.cs
│ │ └── Windows
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── Message.xaml
│ │ └── Message.xaml.cs
│ └── References
│ └── Web
│ └── LeafletJS
│ ├── images
│ │ ├── layers.png
│ │ ├── locate_active.png
│ │ ├── locate.png
│ │ ├── locate.svg
│ │ ├── marker-icon@2x.png
│ │ ├── marker-icon.png
│ │ ├── marker-shadow.png
│ │ └── spinner.gif
│ ├── leaflet.css
│ ├── leaflet-ie.css
│ ├── leaflet.js
│ ├── locate.css
│ ├── locate-ie.css
│ ├── locate.js
│ ├── mobile.css
│ ├── proj4js-compressed.js
│ └── proj4leaflet.js
├── GlobalAssemblyInfo.cs
├── GMap.ico
├── GMap.NET
│ ├── Build
│ │ └── Release
│ │ ├── EntityFramework.dll
│ │ ├── EntityFramework.SqlServer.dll
│ │ ├── EntityFramework.SqlServer.xml
│ │ ├── EntityFramework.xml
│ │ ├── GMap.NET.Core.dll
│ │ ├── GMap.NET.Core.dll.config
│ │ ├── GMap.NET.WindowsForms.dll
│ │ ├── GMap.NET.WindowsForms.dll.config
│ │ ├── GMap.NET.WindowsPresentation.dll
│ │ ├── GMap.NET.WindowsPresentation.dll.config
│ │ ├── GMap.NET.WindowsPresentation.XML
│ │ ├── Mono.Data.Sqlite.dll
│ │ ├── Mono.Security.dll
│ │ ├── Newtonsoft.Json.dll
│ │ ├── Newtonsoft.Json.xml
│ │ ├── System.Data.SQLite.dll
│ │ ├── System.Data.SQLite.EF6.dll
│ │ ├── System.Data.SQLite.Linq.dll
│ │ ├── System.Data.SQLite.xml
│ │ ├── x64
│ │ │ └── SQLite.Interop.dll
│ │ └── x86
│ │ └── SQLite.Interop.dll
│ ├── GMap.NET.Core
│ │ ├── App.config
│ │ ├── bin
│ │ │ └── x86
│ │ │ ├── Debug
│ │ │ └── Release
│ │ ├── GMap.NET
│ │ │ ├── AccessMode.cs
│ │ │ ├── Delegates.cs
│ │ │ ├── DirectionsProvider.cs
│ │ │ ├── Extensions.cs
│ │ │ ├── GDirections.cs
│ │ │ ├── GeocodingProvider.cs
│ │ │ ├── GMaps.cs
│ │ │ ├── GPoint.cs
│ │ │ ├── GpsLog.cs
│ │ │ ├── gpx.cs
│ │ │ ├── GRect.cs
│ │ │ ├── GSize.cs
│ │ │ ├── Interface.cs
│ │ │ ├── LanguageType.cs
│ │ │ ├── MapRoute.cs
│ │ │ ├── MapType.cs
│ │ │ ├── MouseWheelZoomType.cs
│ │ │ ├── Placemark.cs
│ │ │ ├── PointLatLng.cs
│ │ │ ├── PureImageCache.cs
│ │ │ ├── PureProjection.cs
│ │ │ ├── RectLatLng.cs
│ │ │ ├── RenderMode.cs
│ │ │ ├── RoadsProvider.cs
│ │ │ ├── RoutingProvider.cs
│ │ │ ├── Singleton.cs
│ │ │ ├── SizeLatLng.cs
│ │ │ ├── StatusCodes.cs
│ │ │ └── ZipStorer.cs
│ │ ├── GMap.NET.CacheProviders
│ │ │ ├── MemoryCache.cs
│ │ │ ├── MsSQLCePureImageCache.cs
│ │ │ ├── MSSQLPureImageCache.cs
│ │ │ ├── MySQLPureImageCache.cs
│ │ │ ├── PostgreSQLPureImageCache.cs
│ │ │ └── SQLitePureImageCache.cs
│ │ ├── GMap.NET.Core.csproj
│ │ ├── GMap.NET.Internals
│ │ │ ├── Cache.cs
│ │ │ ├── CacheQueueItem.cs
│ │ │ ├── Core.cs
│ │ │ ├── DrawTile.cs
│ │ │ ├── FastReaderWriterLock.cs
│ │ │ ├── FastResourceLock.cs
│ │ │ ├── KiberTileCache.cs
│ │ │ ├── LoadTask.cs
│ │ │ ├── PureImage.cs
│ │ │ ├── RawTile.cs
│ │ │ ├── SocksProxySocket
│ │ │ │ ├── AuthMethod.cs
│ │ │ │ ├── AuthNone.cs
│ │ │ │ ├── AuthUserPass.cs
│ │ │ │ ├── IAsyncProxyResult.cs
│ │ │ │ ├── ProxyException.cs
│ │ │ │ ├── ProxySocket.cs
│ │ │ │ ├── Socks4Handler.cs
│ │ │ │ ├── Socks5Handler.cs
│ │ │ │ ├── SocksHandler.cs
│ │ │ │ └── SocksHttpWebRequest.cs
│ │ │ ├── Stuff.cs
│ │ │ ├── Tile.cs
│ │ │ ├── TileHttpHost.cs
│ │ │ └── TileMatrix.cs
│ │ ├── GMap.NET.MapProviders
│ │ │ ├── ArcGIS
│ │ │ │ ├── ArcGIS_DarbAE_Q2_2011_NAVTQ_Eng_V5_MapProvider.cs
│ │ │ │ ├── ArcGIS_Imagery_World_2D_MapProvider.cs
│ │ │ │ ├── ArcGIS_ShadedRelief_World_2D_MapProvider.cs
│ │ │ │ ├── ArcGIS_StreetMap_World_2D_MapProvider.cs
│ │ │ │ ├── ArcGIS_Topo_US_2D_MapProvider.cs
│ │ │ │ ├── ArcGIS_World_Physical_MapProvider.cs
│ │ │ │ ├── ArcGIS_World_Shaded_Relief_MapProvider.cs
│ │ │ │ ├── ArcGIS_World_Street_MapProvider.cs
│ │ │ │ ├── ArcGIS_World_Terrain_Base_MapProvider.cs
│ │ │ │ └── ArcGIS_World_Topo_MapProvider.cs
│ │ │ ├── Baidu
│ │ │ │ ├── BaiduMapProviderBase.cs
│ │ │ │ └── BaiduMapProvider.cs
│ │ │ ├── Bing
│ │ │ │ ├── BingHybridMapProvider.cs
│ │ │ │ ├── BingMapProvider.cs
│ │ │ │ ├── BingOSMapProvider.cs
│ │ │ │ └── BingSatelliteMapProvider.cs
│ │ │ ├── Custom
│ │ │ │ └── CustomMapProvider.cs
│ │ │ ├── Czech
│ │ │ │ ├── CzechGeographicMapProvider.cs
│ │ │ │ ├── CzechHistoryMapProvider.cs
│ │ │ │ ├── CzechHybridMapProvider.cs
│ │ │ │ ├── CzechMapProvider.cs
│ │ │ │ ├── CzechSatelliteMapProvider.cs
│ │ │ │ ├── CzechTuristMapProvider.cs
│ │ │ │ └── CzechTuristWinterMapProvider.cs
│ │ │ ├── CzechOld
│ │ │ │ ├── CzechHistoryMapProvider.cs
│ │ │ │ ├── CzechHybridMapProvider.cs
│ │ │ │ ├── CzechMapProvider.cs
│ │ │ │ ├── CzechSatelliteMapProvider.cs
│ │ │ │ └── CzechTuristMapProvider.cs
│ │ │ ├── Etc
│ │ │ │ ├── CloudMadeMapProvider.cs
│ │ │ │ ├── LatviaMapProvider.cs
│ │ │ │ ├── MapBenderWMSProvider.cs
│ │ │ │ ├── SpainMapProvider.cs
│ │ │ │ ├── SwedenMapProvider.cs
│ │ │ │ ├── TurkeyMapProvider.cs
│ │ │ │ └── WikiMapiaMapProvider.cs
│ │ │ ├── Gaode
│ │ │ │ ├── GaoDeHybridMapProvider.cs
│ │ │ │ ├── GaodeMapProviderBase.cs
│ │ │ │ ├── GaoDeMapProvider.cs
│ │ │ │ └── GaoDeSatelliteMapProvider.cs
│ │ │ ├── GMapProvider.cs
│ │ │ │ ├── China
│ │ │ │ │ ├── GoogleChinaHybridMapProvider.cs
│ │ │ │ │ ├── GoogleChinaMapProvider.cs
│ │ │ │ │ ├── GoogleChinaSatelliteMapProvider.cs
│ │ │ │ │ └── GoogleChinaTerrainMapProvider.cs
│ │ │ │ ├── GoogleHybridMapProvider.cs
│ │ │ │ ├── GoogleMapProvider.cs
│ │ │ │ ├── GoogleSatelliteMapProvider.cs
│ │ │ │ ├── GoogleStructureMapProvider.cs
│ │ │ │ ├── GoogleTerrainMapProvider.cs
│ │ │ │ └── Korea
│ │ │ │ ├── GoogleKoreaHybridMapProvider.cs
│ │ │ │ ├── GoogleKoreaMapProvider.cs
│ │ │ │ └── GoogleKoreaSatelliteMapProvider.cs
│ │ │ ├── Here
│ │ │ │ ├── HereHybridMapProvider.cs
│ │ │ │ ├── HereMapProvider.cs
│ │ │ │ ├── HereSatelliteMapProvider.cs
│ │ │ │ └── HereTerrainMapProvider.cs
│ │ │ ├── Lithuania
│ │ │ │ ├── Lithuania3dMapProvider.cs
│ │ │ │ ├── LithuaniaHybridMapProvider.cs
│ │ │ │ ├── LithuaniaHybridOldMapProvider.cs
│ │ │ │ ├── LithuaniaMapProvider.cs
│ │ │ │ ├── LithuaniaOrtoFotoMapProvider.cs
│ │ │ │ ├── LithuaniaOrtoFotoOldMapProvider.cs
│ │ │ │ ├── LithuaniaReliefMapProvider.cs
│ │ │ │ └── LithuaniaTOP50.cs
│ │ │ ├── NearMap
│ │ │ │ ├── NearHybridMapProvider.cs
│ │ │ │ ├── NearMapProvider.cs
│ │ │ │ └── NearSatelliteMapProvider.cs
│ │ │ ├── OpenStreetMap
│ │ │ │ ├── OpenCycleLandscapeMapProvider.cs
│ │ │ │ ├── OpenCycleMapProvider.cs
│ │ │ │ ├── OpenCycleTransportMapProvider.cs
│ │ │ │ ├── OpenSeaMapHybridProvider.cs
│ │ │ │ ├── OpenStreet4UMapProvider.cs
│ │ │ │ ├── OpenStreetMapProvider.cs
│ │ │ │ ├── OpenStreetMapQuestHybridProvider.cs
│ │ │ │ ├── OpenStreetMapQuestProvider.cs
│ │ │ │ ├── OpenStreetMapQuestSatteliteProvider.cs
│ │ │ │ ├── OpenStreetMapSurferProvider.cs
│ │ │ │ ├── OpenStreetMapSurferTerrainProvider.cs
│ │ │ │ └── OpenStreetOsmProvider.cs
│ │ │ ├── UMP
│ │ │ │ └── UMPMapProvider.cs
│ │ │ ├── Yahoo
│ │ │ │ ├── YahooHybridMapProvider.cs
│ │ │ │ ├── YahooMapProvider.cs
│ │ │ │ └── YahooSatelliteMapProvider.cs
│ │ │ └── Yandex
│ │ │ ├── YandexHybridMapProvider.cs
│ │ │ ├── YandexMapProvider.cs
│ │ │ └── YandexSatelliteMapProvider.cs
│ │ ├── GMap.NET.Projections
│ │ │ ├── MapsLTProjection.cs
│ │ │ ├── MapsLTReliefProjection.cs
│ │ │ ├── MapsLVProjection.cs
│ │ │ ├── MapyCZProjection.cs
│ │ │ ├── MercatorProjection.cs
│ │ │ ├── MercatorProjectionYandex.cs
│ │ │ ├── PlateCarreeProjection.cs
│ │ │ ├── PlateCarreeProjectionDarbAe.cs
│ │ │ ├── PlateCarreeProjectionPergo.cs
│ │ │ └── SWEREF99_TMProjection.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GMap.NET.Core.csproj.FileListAbsolute.txt
│ │ │ │ ├── GMap.NET.Core.csproj.GenerateResource.Cache
│ │ │ │ ├── GMap.NET.Core.dll
│ │ │ │ ├── GMap.NET.Core.pdb
│ │ │ │ ├── GMap.NET.Properties.Resources.resources
│ │ │ │ └── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── Release
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GMap.NET.Core.csproj.FileListAbsolute.txt
│ │ │ │ ├── GMap.NET.Core.csproj.GenerateResource.Cache
│ │ │ │ ├── GMap.NET.Core.dll
│ │ │ │ ├── GMap.NET.Properties.Resources.resources
│ │ │ │ └── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── v4.0-Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GMap.NET.Core.csproj.FileListAbsolute.txt
│ │ │ │ ├── GMap.NET.Core.csproj.GenerateResource.Cache
│ │ │ │ ├── GMap.NET.Core.dll
│ │ │ │ ├── GMap.NET.Core.pdb
│ │ │ │ ├── GMap.NET.Properties.Resources.resources
│ │ │ │ └── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ └── v4.0-Release
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GMap.NET.Core.csproj.FileListAbsolute.txt
│ │ │ ├── GMap.NET.Core.csproj.GenerateResource.Cache
│ │ │ ├── GMap.NET.Core.dll
│ │ │ ├── GMap.NET.Properties.Resources.resources
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── packages.config
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ └── Resources.resx
│ │ ├── Resources
│ │ │ ├── blue-dot.png
│ │ │ ├── drag_cross_67_16.png
│ │ │ ├── green-dot.png
│ │ │ ├── marker.png
│ │ │ ├── mm_20_blue.png
│ │ │ ├── mm_20_green.png
│ │ │ ├── mm_20_red.png
│ │ │ ├── mm_20_shadow.png
│ │ │ ├── mm_20_yellow.png
│ │ │ ├── red-dot.png
│ │ │ ├── shadow50.png
│ │ │ ├── System.Data.SQLite.x64.NET2.dll.gz
│ │ │ ├── System.Data.SQLite.x64.NET4.dll.gz
│ │ │ ├── System.Data.SQLite.x86.NET2.dll.gz
│ │ │ ├── System.Data.SQLite.x86.NET4.dll.gz
│ │ │ └── yellow-dot.png
│ │ ├── sn.snk
│ │ └── Web References
│ ├── GMap.NET.WindowsForms
│ │ ├── app.config
│ │ ├── bin
│ │ │ └── x86
│ │ │ └── Release
│ │ ├── GMap.NET.ObjectModel
│ │ │ ├── ObservableCollection.cs
│ │ │ └── ObservableCollectionThreadSafe.cs
│ │ ├── GMap.NET.WindowsForms
│ │ │ ├── ColorMatrixs.cs
│ │ │ ├── GMapControl.cs
│ │ │ ├── GMapImage.cs
│ │ │ ├── GMapMarker.cs
│ │ │ ├── GMapOverlay.cs
│ │ │ ├── GMapPolygon.cs
│ │ │ ├── GMapRoute.cs
│ │ │ ├── GMapToolTip.cs
│ │ │ ├── Markers
│ │ │ │ ├── GMarkerArrow.cs
│ │ │ │ ├── GMarkerCircle.cs
│ │ │ │ ├── GMarkerCross.cs
│ │ │ │ ├── GMarkerGoogle.cs
│ │ │ │ └── GMarkerRect.cs
│ │ │ ├── TilePrefetcher.cs
│ │ │ ├── TilePrefetcher.Designer.cs
│ │ │ ├── TilePrefetcher.resx
│ │ │ └── ToolTips
│ │ │ ├── GMapBaloonToolTip.cs
│ │ │ └── GMapRoundedToolTip.cs
│ │ ├── GMap.NET.WindowsForms.csproj
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GMap.NET.TilePrefetcher.resources
│ │ │ │ ├── GMap.NET.WindowsForms.csproj.FileListAbsolute.txt
│ │ │ │ ├── GMap.NET.WindowsForms.csproj.GenerateResource.Cache
│ │ │ │ ├── GMap.NET.WindowsForms.csprojResolveAssemblyReference.cache
│ │ │ │ ├── GMap.NET.WindowsForms.dll
│ │ │ │ ├── GMap.NET.WindowsForms.pdb
│ │ │ │ ├── System.Windows.Forms.Properties.Resources.resources
│ │ │ │ └── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── Release
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GMap.NET.TilePrefetcher.resources
│ │ │ │ ├── GMap.NET.WindowsForms.csproj.FileListAbsolute.txt
│ │ │ │ ├── GMap.NET.WindowsForms.csproj.GenerateResource.Cache
│ │ │ │ ├── GMap.NET.WindowsForms.csprojResolveAssemblyReference.cache
│ │ │ │ ├── GMap.NET.WindowsForms.dll
│ │ │ │ ├── System.Windows.Forms.Properties.Resources.resources
│ │ │ │ └── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── v4.0-Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GMap.NET.TilePrefetcher.resources
│ │ │ │ ├── GMap.NET.WindowsForms.csproj.FileListAbsolute.txt
│ │ │ │ ├── GMap.NET.WindowsForms.csproj.GenerateResource.Cache
│ │ │ │ ├── GMap.NET.WindowsForms.csprojResolveAssemblyReference.cache
│ │ │ │ ├── GMap.NET.WindowsForms.dll
│ │ │ │ ├── GMap.NET.WindowsForms.pdb
│ │ │ │ ├── System.Windows.Forms.Properties.Resources.resources
│ │ │ │ └── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ └── v4.0-Release
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GMap.NET.TilePrefetcher.resources
│ │ │ ├── GMap.NET.WindowsForms.csproj.FileListAbsolute.txt
│ │ │ ├── GMap.NET.WindowsForms.csproj.GenerateResource.Cache
│ │ │ ├── GMap.NET.WindowsForms.csprojResolveAssemblyReference.cache
│ │ │ ├── GMap.NET.WindowsForms.dll
│ │ │ ├── System.Windows.Forms.Properties.Resources.resources
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ └── Resources.resx
│ │ ├── Resources
│ │ │ ├── arrow.png
│ │ │ ├── arrowshadow.png
│ │ │ ├── black_small.png
│ │ │ ├── blue-dot.png
│ │ │ ├── blue.png
│ │ │ ├── blue-pushpin.png
│ │ │ ├── blue_small.png
│ │ │ ├── brown_small.png
│ │ │ ├── drag_cross_67_16.png
│ │ │ ├── go-big-green.png
│ │ │ ├── gray_small.png
│ │ │ ├── green-dot.png
│ │ │ ├── green.png
│ │ │ ├── green_small.png
│ │ │ ├── grn-pushpin.png
│ │ │ ├── lightblue.png
│ │ │ ├── ltblue-dot.png
│ │ │ ├── ltblu-pushpin.png
│ │ │ ├── msmarker.shadow.png
│ │ │ ├── orange-dot.png
│ │ │ ├── orange.png
│ │ │ ├── orange_small.png
│ │ │ ├── pause-big-red.png
│ │ │ ├── pink-dot.png
│ │ │ ├── pink.png
│ │ │ ├── pink-pushpin.png
│ │ │ ├── purple-dot.png
│ │ │ ├── purple.png
│ │ │ ├── purple-pushpin.png
│ │ │ ├── purple_small.png
│ │ │ ├── pushpin_shadow.png
│ │ │ ├── red-dot.png
│ │ │ ├── red.png
│ │ │ ├── red-pushpin.png
│ │ │ ├── red_small.png
│ │ │ ├── shadow_small.png
│ │ │ ├── stop-big-red.png
│ │ │ ├── white_small.png
│ │ │ ├── yellow-dot.png
│ │ │ ├── yellow.png
│ │ │ ├── yellow_small.png
│ │ │ └── ylw-pushpin.png
│ │ ├── Service References
│ │ └── sn.snk
│ ├── GMap.NET.WindowsMobile
│ │ ├── DesignTime.xmta
│ │ ├── GMap.NET.GPS
│ │ │ ├── DegreesMinutesSeconds.cs
│ │ │ ├── GPS.cs
│ │ │ ├── GpsDeviceState.cs
│ │ │ ├── GpsPosition.cs
│ │ │ └── Utils.cs
│ │ ├── GMap.NET.Internals
│ │ │ ├── FastReaderWriterLock.cs
│ │ │ └── Native.cs
│ │ ├── GMap.NET.MapProviders
│ │ │ └── UriBuilder.cs
│ │ ├── GMap.NET.WindowsForms
│ │ │ └── Markers
│ │ │ ├── GMapMarkerGoogleGreen.cs
│ │ │ ├── GMapMarkerGoogleRed.cs
│ │ │ ├── GMapMarkerTransparent.cs
│ │ │ └── GMapMarkerTransparentGoogleGreen.cs
│ │ ├── GMap.NET.WindowsMobile.csproj
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ └── Resources.resx
│ │ ├── Resources
│ │ │ ├── bigMarkerGreen.png
│ │ │ ├── drag_cross_67_16.png
│ │ │ ├── marker.png
│ │ │ └── shadow50.png
│ │ ├── sn.snk
│ │ └── System.ComponentModel
│ │ └── Attributes.cs
│ └── GMap.NET.WindowsPresentation
│ ├── app.config
│ ├── bin
│ │ └── x86
│ │ └── Release
│ │ └── GMap.NET.WindowsPresentation.XML
│ ├── GMap.NET.WindowsPresentation
│ │ ├── GMapControl.cs
│ │ ├── GMapImage.cs
│ │ ├── GMapMarker.cs
│ │ ├── GMapPolygon.cs
│ │ ├── GMapRoute.cs
│ │ ├── TilePrefetcher.xaml
│ │ └── TilePrefetcher.xaml.cs
│ ├── GMap.NET.WindowsPresentation.csproj
│ ├── obj
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GMap.NET.WindowsPresentation
│ │ │ │ ├── TilePrefetcher.baml
│ │ │ │ ├── TilePrefetcher.g.cs
│ │ │ │ └── TilePrefetcher.g.i.cs
│ │ │ ├── GMap.NET.WindowsPresentation.csproj.FileListAbsolute.txt
│ │ │ ├── GMap.NET.WindowsPresentation.csprojResolveAssemblyReference.cache
│ │ │ ├── GMap.NET.WindowsPresentation.dll
│ │ │ ├── GMap.NET.WindowsPresentation.g.resources
│ │ │ ├── GMap.NET.WindowsPresentation_MarkupCompile.cache
│ │ │ ├── GMap.NET.WindowsPresentation_MarkupCompile.i.cache
│ │ │ ├── GMap.NET.WindowsPresentation.pdb
│ │ │ └── TempPE
│ │ ├── Release
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GMap.NET.WindowsPresentation
│ │ │ │ ├── TilePrefetcher.baml
│ │ │ │ ├── TilePrefetcher.g.cs
│ │ │ │ └── TilePrefetcher.g.i.cs
│ │ │ ├── GMap.NET.WindowsPresentation.csproj.FileListAbsolute.txt
│ │ │ ├── GMap.NET.WindowsPresentation.csprojResolveAssemblyReference.cache
│ │ │ ├── GMap.NET.WindowsPresentation.dll
│ │ │ ├── GMap.NET.WindowsPresentation.g.resources
│ │ │ ├── GMap.NET.WindowsPresentation_MarkupCompile.cache
│ │ │ ├── GMap.NET.WindowsPresentation_MarkupCompile.i.cache
│ │ │ └── TempPE
│ │ ├── v4.0-Debug
│ │ │ ├── build.force
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GMap.NET.WindowsPresentation
│ │ │ │ ├── TilePrefetcher.baml
│ │ │ │ ├── TilePrefetcher.g.cs
│ │ │ │ └── TilePrefetcher.g.i.cs
│ │ │ ├── GMap.NET.WindowsPresentation.csproj.FileListAbsolute.txt
│ │ │ ├── GMap.NET.WindowsPresentation.csprojResolveAssemblyReference.cache
│ │ │ ├── GMap.NET.WindowsPresentation.dll
│ │ │ ├── GMap.NET.WindowsPresentation.g.resources
│ │ │ ├── GMap.NET.WindowsPresentation_MarkupCompile.cache
│ │ │ ├── GMap.NET.WindowsPresentation_MarkupCompile.i.cache
│ │ │ ├── GMap.NET.WindowsPresentation.pdb
│ │ │ └── TempPE
│ │ └── v4.0-Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GMap.NET.WindowsPresentation
│ │ │ ├── TilePrefetcher.baml
│ │ │ ├── TilePrefetcher.g.cs
│ │ │ └── TilePrefetcher.g.i.cs
│ │ ├── GMap.NET.WindowsPresentation.csproj.FileListAbsolute.txt
│ │ ├── GMap.NET.WindowsPresentation.csprojResolveAssemblyReference.cache
│ │ ├── GMap.NET.WindowsPresentation.dll
│ │ ├── GMap.NET.WindowsPresentation.g.resources
│ │ ├── GMap.NET.WindowsPresentation_MarkupCompile.cache
│ │ ├── GMap.NET.WindowsPresentation_MarkupCompile.i.cache
│ │ └── TempPE
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── sn.snk
├── GMap.NET.sln
├── GMap.NET vs10.sln
├── GMap.NET vs9.sln
├── packages
│ ├── EntityFramework.6.2.0
│ │ ├── content
│ │ │ └── net40
│ │ │ ├── App.config.transform
│ │ │ └── Web.config.transform
│ │ ├── EntityFramework.6.2.0.nupkg
│ │ ├── lib
│ │ │ ├── net40
│ │ │ │ ├── EntityFramework.dll
│ │ │ │ ├── EntityFramework.SqlServer.dll
│ │ │ │ ├── EntityFramework.SqlServer.xml
│ │ │ │ └── EntityFramework.xml
│ │ │ └── net45
│ │ │ ├── EntityFramework.dll
│ │ │ ├── EntityFramework.SqlServer.dll
│ │ │ ├── EntityFramework.SqlServer.xml
│ │ │ └── EntityFramework.xml
│ │ └── tools
│ │ ├── about_EntityFramework.help.txt
│ │ ├── EntityFramework.PowerShell.dll
│ │ ├── EntityFramework.PowerShell.Utility.dll
│ │ ├── EntityFramework.psd1
│ │ ├── EntityFramework.psm1
│ │ ├── init.ps1
│ │ ├── install.ps1
│ │ └── migrate.exe
│ ├── Mono.Data.Sqlite.1.0.61
│ │ ├── lib
│ │ │ └── net40
│ │ │ └── Mono.Data.Sqlite.dll
│ │ └── Mono.Data.Sqlite.1.0.61.nupkg
│ ├── Mono.Security.3.2.3.0
│ │ ├── lib
│ │ │ ├── net40
│ │ │ │ └── Mono.Security.dll
│ │ │ └── net45
│ │ │ └── Mono.Security.dll
│ │ └── Mono.Security.3.2.3.0.nupkg
│ ├── Newtonsoft.Json.11.0.2
│ │ ├── lib
│ │ │ ├── net20
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── net35
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── net40
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── net45
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── netstandard1.0
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── netstandard1.3
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── netstandard2.0
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── portable-net40+sl5+win8+wp8+wpa81
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ └── portable-net45+win8+wp8+wpa81
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ ├── LICENSE.md
│ │ └── Newtonsoft.Json.11.0.2.nupkg
│ ├── System.Data.SQLite.1.0.109.2
│ │ └── System.Data.SQLite.1.0.109.2.nupkg
│ ├── System.Data.SQLite.Core.1.0.109.2
│ │ ├── build
│ │ │ ├── net20
│ │ │ │ ├── System.Data.SQLite.Core.targets
│ │ │ │ ├── x64
│ │ │ │ │ └── SQLite.Interop.dll
│ │ │ │ └── x86
│ │ │ │ └── SQLite.Interop.dll
│ │ │ ├── net40
│ │ │ │ ├── System.Data.SQLite.Core.targets
│ │ │ │ ├── x64
│ │ │ │ │ └── SQLite.Interop.dll
│ │ │ │ └── x86
│ │ │ │ └── SQLite.Interop.dll
│ │ │ ├── net45
│ │ │ │ ├── System.Data.SQLite.Core.targets
│ │ │ │ ├── x64
│ │ │ │ │ └── SQLite.Interop.dll
│ │ │ │ └── x86
│ │ │ │ └── SQLite.Interop.dll
│ │ │ ├── net451
│ │ │ │ ├── System.Data.SQLite.Core.targets
│ │ │ │ ├── x64
│ │ │ │ │ └── SQLite.Interop.dll
│ │ │ │ └── x86
│ │ │ │ └── SQLite.Interop.dll
│ │ │ └── net46
│ │ │ ├── System.Data.SQLite.Core.targets
│ │ │ ├── x64
│ │ │ │ └── SQLite.Interop.dll
│ │ │ └── x86
│ │ │ └── SQLite.Interop.dll
│ │ ├── lib
│ │ │ ├── net20
│ │ │ │ ├── System.Data.SQLite.dll
│ │ │ │ ├── System.Data.SQLite.dll.config
│ │ │ │ └── System.Data.SQLite.xml
│ │ │ ├── net40
│ │ │ │ ├── System.Data.SQLite.dll
│ │ │ │ ├── System.Data.SQLite.dll.config
│ │ │ │ └── System.Data.SQLite.xml
│ │ │ ├── net45
│ │ │ │ ├── System.Data.SQLite.dll
│ │ │ │ ├── System.Data.SQLite.dll.config
│ │ │ │ └── System.Data.SQLite.xml
│ │ │ ├── net451
│ │ │ │ ├── System.Data.SQLite.dll
│ │ │ │ ├── System.Data.SQLite.dll.config
│ │ │ │ └── System.Data.SQLite.xml
│ │ │ ├── net46
│ │ │ │ ├── System.Data.SQLite.dll
│ │ │ │ ├── System.Data.SQLite.dll.config
│ │ │ │ └── System.Data.SQLite.xml
│ │ │ └── netstandard2.0
│ │ │ ├── System.Data.SQLite.dll
│ │ │ ├── System.Data.SQLite.dll.config
│ │ │ └── System.Data.SQLite.xml
│ │ ├── runtimes
│ │ │ ├── linux-x64
│ │ │ │ └── native
│ │ │ │ └── netstandard2.0
│ │ │ │ └── SQLite.Interop.dll
│ │ │ ├── osx-x64
│ │ │ │ └── native
│ │ │ │ └── netstandard2.0
│ │ │ │ └── SQLite.Interop.dll
│ │ │ ├── win-x64
│ │ │ │ └── native
│ │ │ │ └── netstandard2.0
│ │ │ │ └── SQLite.Interop.dll
│ │ │ └── win-x86
│ │ │ └── native
│ │ │ └── netstandard2.0
│ │ │ └── SQLite.Interop.dll
│ │ └── System.Data.SQLite.Core.1.0.109.2.nupkg
│ ├── System.Data.SQLite.EF6.1.0.109.0
│ │ ├── content
│ │ │ ├── net40
│ │ │ │ ├── app.config.install.xdt
│ │ │ │ ├── app.config.transform
│ │ │ │ ├── web.config.install.xdt
│ │ │ │ └── web.config.transform
│ │ │ ├── net45
│ │ │ │ ├── app.config.install.xdt
│ │ │ │ ├── app.config.transform
│ │ │ │ ├── web.config.install.xdt
│ │ │ │ └── web.config.transform
│ │ │ ├── net451
│ │ │ │ ├── app.config.install.xdt
│ │ │ │ ├── app.config.transform
│ │ │ │ ├── web.config.install.xdt
│ │ │ │ └── web.config.transform
│ │ │ └── net46
│ │ │ ├── app.config.install.xdt
│ │ │ ├── app.config.transform
│ │ │ ├── web.config.install.xdt
│ │ │ └── web.config.transform
│ │ ├── lib
│ │ │ ├── net40
│ │ │ │ └── System.Data.SQLite.EF6.dll
│ │ │ ├── net45
│ │ │ │ └── System.Data.SQLite.EF6.dll
│ │ │ ├── net451
│ │ │ │ └── System.Data.SQLite.EF6.dll
│ │ │ └── net46
│ │ │ └── System.Data.SQLite.EF6.dll
│ │ ├── System.Data.SQLite.EF6.1.0.109.0.nupkg
│ │ └── tools
│ │ ├── net40
│ │ │ └── install.ps1
│ │ ├── net45
│ │ │ └── install.ps1
│ │ ├── net451
│ │ │ └── install.ps1
│ │ └── net46
│ │ └── install.ps1
│ └── System.Data.SQLite.Linq.1.0.109.0
│ ├── content
│ │ ├── net20
│ │ │ ├── app.config.transform
│ │ │ └── web.config.transform
│ │ ├── net40
│ │ │ ├── app.config.transform
│ │ │ └── web.config.transform
│ │ ├── net45
│ │ │ ├── app.config.transform
│ │ │ └── web.config.transform
│ │ ├── net451
│ │ │ ├── app.config.transform
│ │ │ └── web.config.transform
│ │ └── net46
│ │ ├── app.config.transform
│ │ └── web.config.transform
│ ├── lib
│ │ ├── net20
│ │ │ └── System.Data.SQLite.Linq.dll
│ │ ├── net40
│ │ │ └── System.Data.SQLite.Linq.dll
│ │ ├── net45
│ │ │ └── System.Data.SQLite.Linq.dll
│ │ ├── net451
│ │ │ └── System.Data.SQLite.Linq.dll
│ │ └── net46
│ │ └── System.Data.SQLite.Linq.dll
│ └── System.Data.SQLite.Linq.1.0.109.0.nupkg
├── README.md
├── Setup
│ ├── GMap.NET - Hot Build
│ │ ├── app.config
│ │ ├── GMap.NET - Hot Build.csproj
│ │ ├── ImageReady.ico
│ │ ├── MainForm.cs
│ │ ├── MainForm.Designer.cs
│ │ ├── MainForm.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── app.manifest
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resources
│ │ │ └── logo99.png
│ │ └── sn.snk
│ └── GMap.NET.WindowsMobile.vddproj
├── Testing
│ ├── BigMapMaker
│ │ ├── app.config
│ │ ├── BigMapMaker.csproj
│ │ ├── bin
│ │ │ └── Debug
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ ├── Program.cs
│ │ └── Properties
│ │ └── AssemblyInfo.cs
│ ├── BingWpfFusion
│ │ ├── app.config
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ ├── BingWpfFusion.csproj
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── App.g.i.cs
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ ├── packages.config
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── ConsoleApplication
│ │ ├── app.config
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ └── x86
│ │ │ └── Debug
│ │ ├── ConsoleApplication.csproj
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ ├── packages.config
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── sn.snk
│ ├── Demo.Clouds
│ │ ├── app.config
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ └── x86
│ │ │ └── Debug
│ │ ├── Demo.Clouds.csproj
│ │ ├── Images
│ │ │ └── USOverlay.png
│ │ ├── MainForm.cs
│ │ ├── MainForm.Designer.cs
│ │ ├── MainForm.resx
│ │ ├── MapControl.cs
│ │ ├── MapControl.designer.cs
│ │ ├── MapControl.resx
│ │ ├── Markers
│ │ │ └── GMapImage.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Demo.Docking
│ │ ├── app.config
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ └── v35
│ │ ├── Demo.Docking.csproj
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── App.g.i.cs
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ ├── packages.config
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Demo.Geocoding
│ │ ├── App.config
│ │ ├── bin
│ │ │ └── Debug
│ │ ├── Demo.Geocoding.csproj
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ └── TempPE
│ │ ├── packages.config
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Demo.StreetView
│ │ ├── app.config
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ └── x86
│ │ │ └── Debug
│ │ ├── Demo.StreetView.csproj
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── App.g.i.cs
│ │ │ ├── Demo.StreetView_MarkupCompile.i.cache
│ │ │ ├── Demo.StreetView_MarkupCompile.i.lref
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ │ ├── TempPE
│ │ │ └── Window1.g.i.cs
│ │ ├── PanoramaViewer.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Window1.xaml
│ │ └── Window1.xaml.cs
│ ├── MvcMapFusion
│ │ ├── about.html
│ │ ├── App_Data
│ │ ├── bin
│ │ ├── Content
│ │ │ ├── Site.css
│ │ │ └── themes
│ │ │ └── base
│ │ │ ├── accordion.css
│ │ │ ├── all.css
│ │ │ ├── autocomplete.css
│ │ │ ├── base.css
│ │ │ ├── button.css
│ │ │ ├── core.css
│ │ │ ├── datepicker.css
│ │ │ ├── dialog.css
│ │ │ ├── draggable.css
│ │ │ ├── images
│ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ ├── ui-icons_444444_256x240.png
│ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ ├── ui-icons_555555_256x240.png
│ │ │ │ ├── ui-icons_777620_256x240.png
│ │ │ │ ├── ui-icons_777777_256x240.png
│ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ ├── ui-icons_cc0000_256x240.png
│ │ │ │ ├── ui-icons_cd0a0a_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── jquery.ui.accordion.css
│ │ │ ├── jquery.ui.all.css
│ │ │ ├── jquery.ui.autocomplete.css
│ │ │ ├── jquery.ui.button.css
│ │ │ ├── jquery.ui.core.css
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery.ui.datepicker.css
│ │ │ ├── jquery.ui.dialog.css
│ │ │ ├── jquery-ui.min.css
│ │ │ ├── jquery.ui.progressbar.css
│ │ │ ├── jquery.ui.resizable.css
│ │ │ ├── jquery.ui.selectable.css
│ │ │ ├── jquery.ui.slider.css
│ │ │ ├── jquery.ui.tabs.css
│ │ │ ├── jquery.ui.theme.css
│ │ │ ├── menu.css
│ │ │ ├── progressbar.css
│ │ │ ├── resizable.css
│ │ │ ├── selectable.css
│ │ │ ├── selectmenu.css
│ │ │ ├── slider.css
│ │ │ ├── sortable.css
│ │ │ ├── spinner.css
│ │ │ ├── tabs.css
│ │ │ ├── theme.css
│ │ │ └── tooltip.css
│ │ ├── Controllers
│ │ │ └── HomeController.cs
│ │ ├── Global.asax
│ │ ├── Global.asax.cs
│ │ ├── index.html
│ │ ├── Models
│ │ ├── MvcMapFusion.csproj
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ ├── packages.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── README.jQuery.vsdoc.txt
│ │ ├── readme.txt
│ │ ├── Scripts
│ │ │ ├── jquery-1.5.1.js
│ │ │ ├── jquery-1.5.1.min.js
│ │ │ ├── jquery-1.5.1-vsdoc.js
│ │ │ ├── jquery-3.3.1.intellisense.js
│ │ │ ├── jquery-3.3.1.js
│ │ │ ├── jquery-3.3.1.min.js
│ │ │ ├── jquery-3.3.1.min.map
│ │ │ ├── jquery-3.3.1.slim.js
│ │ │ ├── jquery-3.3.1.slim.min.js
│ │ │ ├── jquery-3.3.1.slim.min.map
│ │ │ ├── jquery-ui-1.12.1.js
│ │ │ ├── jquery-ui-1.12.1.min.js
│ │ │ ├── jquery-ui-1.8.11.js
│ │ │ ├── jquery-ui-1.8.11.min.js
│ │ │ ├── jquery.unobtrusive-ajax.js
│ │ │ ├── jquery.unobtrusive-ajax.min.js
│ │ │ ├── jquery.validate.js
│ │ │ ├── jquery.validate.min.js
│ │ │ ├── jquery.validate.unobtrusive.js
│ │ │ ├── jquery.validate.unobtrusive.min.js
│ │ │ ├── jquery.validate-vsdoc.js
│ │ │ ├── MicrosoftAjax.debug.js
│ │ │ ├── MicrosoftAjax.js
│ │ │ ├── MicrosoftMvcAjax.debug.js
│ │ │ ├── MicrosoftMvcAjax.js
│ │ │ ├── MicrosoftMvcValidation.debug.js
│ │ │ ├── MicrosoftMvcValidation.js
│ │ │ ├── modernizr-1.7.js
│ │ │ ├── modernizr-1.7.min.js
│ │ │ └── modernizr-2.8.3.js
│ │ ├── Views
│ │ │ ├── Home
│ │ │ │ ├── About.cshtml
│ │ │ │ └── Index.cshtml
│ │ │ ├── Shared
│ │ │ │ ├── Error.cshtml
│ │ │ │ ├── _Layout.cshtml
│ │ │ │ └── LeafletJS
│ │ │ │ └── images
│ │ │ ├── _ViewStart.cshtml
│ │ │ └── Web.config
│ │ ├── Web.config
│ │ ├── Web.Debug.config
│ │ └── Web.Release.config
│ ├── Silverlight
│ │ ├── SilverlightMapFusion
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── MainPage.xaml
│ │ │ ├── MainPage.xaml.cs
│ │ │ ├── Properties
│ │ │ │ ├── AppManifest.xml
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ └── OutOfBrowserSettings.xml
│ │ │ └── SilverlightMapFusion.csproj
│ │ └── SilverlightMapFusion.Web
│ │ ├── bin
│ │ ├── ClientBin
│ │ ├── MainForm.aspx
│ │ ├── MainForm.aspx.cs
│ │ ├── MainForm.aspx.designer.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Silverlight.js
│ │ ├── SilverlightMapFusion.Web.csproj
│ │ ├── Web.config
│ │ ├── Web.Debug.config
│ │ └── Web.Release.config
│ └── TemplatedBinding
│ ├── app.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── bin
│ │ ├── Debug
│ │ └── x86
│ │ └── Debug
│ ├── obj
│ │ └── Debug
│ │ ├── App.g.i.cs
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── TempPE
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── TemplatedBinding.csproj
│ ├── Window1.xaml
│ └── Window1.xaml.cs
└── Tools
└── MapCruncher
├── app.config
├── BackMaker
│ ├── Program.cs
│ ├── ProgramInstance.cs
│ └── UsageException.cs
├── bin
│ └── Debug
├── fpdfview.dll
├── Info.pdf
├── Jama
│ ├── Jama
│ │ ├── CholeskyDecomposition.cs
│ │ ├── CorrespondencesAreSingularException.cs
│ │ ├── EigenvalueDecomposition.cs
│ │ ├── JamaMatrix.cs
│ │ ├── LUDecomposition.cs
│ │ ├── QRDecomposition.cs
│ │ └── SingularValueDecomposition.cs
│ ├── Jama.examples
│ │ └── MagicSquareExample.cs
│ ├── Jama.test
│ │ └── TestMatrix.cs
│ └── Jama.util
│ ├── Maths.cs
│ └── SupportClass.cs
├── MapCruncherAppConfig.xml
├── MapCruncher.chm
├── MapCruncher.csproj
├── MSR.CVE.BackMaker
│ ├── AboutForm.cs
│ ├── AboutForm.resources
│ ├── AckRecord.cs
│ ├── AffineTransformationStyle.cs
│ ├── AssociationIfc.cs
│ ├── AutomaticTransformationStyle.cs
│ ├── BackMakerRegistry.cs
│ ├── BiSortedDictionary.cs
│ ├── BuildConfig.cs
│ ├── CfgBool.cs
│ ├── Cfg.cs
│ ├── CfgInt.cs
│ ├── CfgString.cs
│ ├── CompositeTileUnit.cs
│ ├── ConfigurationException.cs
│ ├── CrunchedFile.cs
│ ├── CrunchedLayer.cs
│ ├── CurrentSchema.cs
│ ├── D.cs
│ ├── DebugComparer.cs
│ ├── DebugThreadInterrupter.cs
│ ├── DefaultReferenceView.cs
│ ├── DegreesMinutesSeconds.cs
│ ├── DirtyEvent.cs
│ ├── DirtyListener.cs
│ ├── DirtyString.cs
│ ├── DisplayablePosition.cs
│ ├── DocumentMutabilityControlIfc.cs
│ ├── DownhillInverterPointTransformer.cs
│ ├── DuplicatePushpinException.cs
│ ├── DynamicallyCompositingLayerViewManager.cs
│ ├── ElementwiseMath.cs
│ ├── ErrorPosition.cs
│ ├── ExceptionMessageRecord.cs
│ ├── ExpandedMemoryIfc.cs
│ ├── FadeOptions.cs
│ ├── FastImageWarper.cs
│ ├── FIBR.cs
│ ├── FileIdentification.cs
│ ├── FileOutputMethod.cs
│ ├── FileUtilities.cs
│ ├── FodderSupport.cs
│ ├── FoxitLibManager.cs
│ ├── FoxitLibWorker.cs
│ ├── FoxitViewer.cs
│ ├── FPDFBitmapCache.cs
│ ├── GDIBigLockedImage.cs
│ ├── GhostscriptConfiguration.cs
│ ├── HasDisplayNameIfc.cs
│ ├── HeaderList.cs
│ ├── HeapBool.cs
│ ├── HomographicTransformationStyle.cs
│ ├── HomographyPointTransformer.cs
│ ├── HTMLMessageBox.cs
│ ├── HTMLMessageBox.resources
│ ├── ICurrentView.cs
│ ├── IFoxitViewer.cs
│ ├── IgnoredTags.cs
│ ├── ImageTypeMapper.cs
│ ├── ImageTypeMapping.cs
│ ├── IMapView.cs
│ ├── InlineSourceMapInfoSchema.cs
│ ├── InsaneSourceMapRemover.cs
│ ├── IntPixel.cs
│ ├── InvalidatableViewIfc.cs
│ ├── InvalidFileContentsException.cs
│ ├── InvalidLLZ.cs
│ ├── InvalidMashupFile.cs
│ ├── IPointTransformer.cs
│ ├── ITileWorkFeedback.cs
│ ├── IViewManager.cs
│ ├── LastViewIfc.cs
│ ├── LatentRegionHolder.cs
│ ├── LatLon.cs
│ ├── LatLonEditIfc.cs
│ ├── LatLonZoom.cs
│ ├── LayerControlIfc.cs
│ ├── LayerControls.cs
│ ├── LayerControls.resources
│ ├── Layer.cs
│ ├── LayerList.cs
│ ├── LayerMetadataFile.cs
│ ├── LayerView.cs
│ ├── Legend.cs
│ ├── LegendDisplayableSourceWrapper.cs
│ ├── LegendList.cs
│ ├── LegendOptionsPanel.cs
│ ├── LegendOptionsPanel.resources
│ ├── LegendRecord.cs
│ ├── LegendView.cs
│ ├── LegendViewManager.cs
│ ├── LengthRecord.cs
│ ├── ListUIIfc.cs
│ ├── LLZBox.cs
│ ├── LLZBox.resources
│ ├── LocalDocumentDescriptor.cs
│ ├── MainAppForm.cs
│ ├── MainAppForm.resources
│ ├── MainAppForm.resx
│ ├── Manifest.cs
│ ├── ManifestOutputMethod.cs
│ ├── MapDrawingOption.cs
│ ├── MapPosition.cs
│ ├── MapPositionDelegate.cs
│ ├── MapRectangle.cs
│ ├── MapTileSourceFactory.cs
│ ├── Mashup.cs
│ ├── MashupFileWarning.cs
│ ├── MashupFileWarningList.cs
│ ├── MashupParseContext.cs
│ ├── MashupWriteContext.cs
│ ├── MashupXMLSchemaVersion.cs
│ ├── MC1NamingScheme.cs
│ ├── MonolithicMapPositionsSchema.cs
│ ├── NamedPipeBase.cs
│ ├── NamedPipeClient.cs
│ ├── NamedPipeServer.cs
│ ├── NameWatchingTreeNode.cs
│ ├── NoMapPosition.cs
│ ├── NonredundantRenderComplaint.cs
│ ├── NoTagIdentities.cs
│ ├── NothingLayerViewManager.cs
│ ├── NoView.cs
│ ├── OneLayerBoundApplier.cs
│ ├── OpenRequest.cs
│ ├── OptionsPanelVisibility.cs
│ ├── OutputTileType.cs
│ ├── PaintPrompter.cs
│ ├── PaintSpecification.cs
│ ├── ParametricLine.cs
│ ├── ParseableCfg.cs
│ ├── PinDisplayIfc.cs
│ ├── Pixel.cs
│ ├── PixelStruct.cs
│ ├── Point64.cs
│ ├── PointD.cs
│ ├── PositionAssociation.cs
│ ├── PositionAssociationView.cs
│ ├── PositionMemoryIfc.cs
│ ├── PositionUpdateIfc.cs
│ ├── QueuedTileProvider.cs
│ ├── QueueRequestIfc.cs
│ ├── QueueSuicideRequest.cs
│ ├── QuitRequest.cs
│ ├── Range.cs
│ ├── RangeDescriptor.cs
│ ├── RangeDouble.cs
│ ├── RangeInt.cs
│ ├── RangeQueryData.cs
│ ├── RBTreeNode.cs
│ ├── ReadyToLockIfc.cs
│ ├── RecoverAutoSavedFileDialog.cs
│ ├── RecoverAutoSavedFileDialog.resources
│ ├── RectangleD.cs
│ ├── RectangleFRecord.cs
│ ├── RedBlackTree.cs
│ ├── RefSnapView.cs
│ ├── RegistrationControlRecord.cs
│ ├── registrationControls.cs
│ ├── registrationControls.resources
│ ├── RegistrationDefinition.cs
│ ├── RemoteFoxitServer.cs
│ ├── RemoteFoxitStub.cs
│ ├── RenderBounds.cs
│ ├── RenderClip.cs
│ ├── RenderComplaintBox.cs
│ ├── RenderDebug.cs
│ ├── RenderedLayerDisplayInfo.cs
│ ├── RenderedLayerSelector.cs
│ ├── RenderedMashupViewer.cs
│ ├── RenderedMashupViewer.resources
│ ├── RenderedTileNamingScheme.cs
│ ├── RenderIfc.cs
│ ├── RenderOptions.cs
│ ├── RenderOptionsPanel.cs
│ ├── RenderOptionsPanel.resources
│ ├── RenderOutputMethod.cs
│ ├── RenderOutputUtil.cs
│ ├── RenderProgressPanel2.cs
│ ├── RenderProgressPanel2.resources
│ ├── RenderQualityStyle.cs
│ ├── RenderRegion.cs
│ ├── RenderReply.cs
│ ├── RenderRequest.cs
│ ├── RenderState.cs
│ ├── RenderToFileControl.cs
│ ├── RenderToFileControl.resources
│ ├── RenderToFileOptions.cs
│ ├── RenderToOptions.cs
│ ├── RenderToS3Control.cs
│ ├── RenderToS3Control.resources
│ ├── RenderToS3Options.cs
│ ├── RenderUIIfc.cs
│ ├── RenderWindow.cs
│ ├── RenderWindow.resources
│ ├── RenderWindow.resx
│ ├── RenderWorkUnitComparinator.cs
│ ├── RenderWorkUnit.cs
│ ├── RequestInterestIfc.cs
│ ├── RobustPointTransformer.cs
│ ├── S3Adaptor.cs
│ ├── S3Content.cs
│ ├── S3Credentials.cs
│ ├── S3CredentialsForm.cs
│ ├── S3CredentialsForm.resources
│ ├── S3OutputMethod.cs
│ ├── S3Response.cs
│ ├── SampleHTMLWriterConstants.cs
│ ├── SampleHTMLWriter.cs
│ ├── Set.cs
│ ├── SingleMaxZoomForEntireMashupCompatibilityBlob.cs
│ ├── SingleMaxZoomForEntireMashupSchema.cs
│ ├── SingleSourceUnit.cs
│ ├── SnapViewDisplayIfc.cs
│ ├── SnapViewStoreIfc.cs
│ ├── SourceMap.cs
│ ├── SourceMapInfoAsCharDataSchema.cs
│ ├── SourceMapInfo.cs
│ ├── SourceMapInfoPanel.cs
│ ├── SourceMapInfoPanel.resources
│ ├── SourceMapLegendFrame.cs
│ ├── SourceMapOverviewWindow.cs
│ ├── SourceMapOverviewWindow.resources
│ ├── SourceMapRecord.cs
│ ├── SourceMapRegistrationView.cs
│ ├── SourceMapRenderOptions.cs
│ ├── SourceMapViewManager.cs
│ ├── SourceSnapView.cs
│ ├── StreamFilter.cs
│ ├── StreamTee.cs
│ ├── StringUtils.cs
│ ├── SVDisplayParams.cs
│ ├── ThumbnailCollection.cs
│ ├── ThumbnailRecord.cs
│ ├── TileAddress.cs
│ ├── TileRectangle.cs
│ ├── TracedScreenPoint.cs
│ ├── TracedVertex.cs
│ ├── TransformationStyle.cs
│ ├── TransformationStyleFactory.cs
│ ├── TransformFailedException.cs
│ ├── TransparencyColor.cs
│ ├── TransparencyIfc.cs
│ ├── TransparencyOptionsChangedDelegate.cs
│ ├── TransparencyOptions.cs
│ ├── TransparencyPanel.cs
│ ├── TransparencyPanel.resources
│ ├── TRecord.cs
│ ├── UIPositionManager.cs
│ ├── UndefinedPixel.cs
│ ├── UnknownImageTypeException.cs
│ ├── UserRegionViewController.cs
│ ├── VENamingScheme.cs
│ ├── VEUrlFormat.cs
│ ├── ViewControlIfc.cs
│ ├── ViewerControl.cs
│ ├── ViewerControlIfc.cs
│ ├── ViewerControl.resources
│ ├── ViewerControl.resx
│ ├── ViewsNotAsWellPreservedSchema.cs
│ ├── ViewState.cs
│ ├── ViewState_XML.cs
│ ├── VirtualEarthWebDownloader.cs
│ ├── XMLTagReader.cs
│ └── XMLUtils.cs
├── MSR.CVE.BackMaker.ImagePipeline
│ ├── AccessMethod.cs
│ ├── Affine2DPointTransformer.cs
│ ├── AlwaysReturnFailureFuture.cs
│ ├── ApplyFuture.cs
│ ├── ApplyPrototype.cs
│ ├── ApplyVerbPresent.cs
│ ├── Asynchronizer.cs
│ ├── AsyncRecordCache.cs
│ ├── AsyncRecord.cs
│ ├── AsyncRef.cs
│ ├── AsyncScheduler.cs
│ ├── AsyncState.cs
│ ├── BeyondImageBounds.cs
│ ├── BoolParameter.cs
│ ├── BoundsPresent.cs
│ ├── CacheBase.cs
│ ├── CachePackage.cs
│ ├── CacheRecord.cs
│ ├── ClockCacheRecord.cs
│ ├── CompositeBoundsVerb.cs
│ ├── CompositeImageVerb.cs
│ ├── CompositeTileSource.cs
│ ├── ConstantFuture.cs
│ ├── ConstantVerb.cs
│ ├── ContinuousCoordinateSystem.cs
│ ├── CoordinateSystemIfc.cs
│ ├── CoordinateSystemUtilities.cs
│ ├── DebugHash.cs
│ ├── DiskCache.cs
│ ├── DiskCacheFuture.cs
│ ├── DiskCachePrototype.cs
│ ├── DisplayableSourceCache.cs
│ ├── DummyTerm.cs
│ ├── EncodableHash.cs
│ ├── ExactColors.cs
│ ├── FadeVerb.cs
│ ├── FakeOpenDocumentFuture.cs
│ ├── FastPoly1PointTransformer.cs
│ ├── FastPoly2PointTransformer.cs
│ ├── FetchDocumentFuture.cs
│ ├── FlatAddressLayout.cs
│ ├── FoxitOpenDocument.cs
│ ├── FoxitOpenVerb.cs
│ ├── FutureBase.cs
│ ├── FutureDocumentFromFilesystem.cs
│ ├── FutureDocumentFromUri.cs
│ ├── FutureFeatures.cs
│ ├── GDIOpenDocument.cs
│ ├── GDIOpenVerb.cs
│ ├── GeneralDocumentFuture.cs
│ ├── HashableImmutableParameter.cs
│ ├── HomographicImageTransformer.cs
│ ├── IBoundsProvider.cs
│ ├── IDisplayableSource.cs
│ ├── IDocumentFuture.cs
│ ├── IDocumentSource.cs
│ ├── IEvictable.cs
│ ├── IFuture.cs
│ ├── IFuturePrototype.cs
│ ├── IImageTransformer.cs
│ ├── ImageParameterFromRawBounds.cs
│ ├── ImageParameterFromTileAddress.cs
│ ├── ImageParameterTypeIfc.cs
│ ├── ImageRefCounted.cs
│ ├── ImageRef.cs
│ ├── ImmutableParameter.cs
│ ├── InjectedTileFailure.cs
│ ├── InsufficientCorrespondencesException.cs
│ ├── InterestList.cs
│ ├── IntParameter.cs
│ ├── IPolyPointTransformer.cs
│ ├── IRenderableSource.cs
│ ├── IRobustHash.cs
│ ├── IRobustlyHashable.cs
│ ├── ISourceMapRendererVerbs.cs
│ ├── ITileAddressLayout.cs
│ ├── LatLonToSourceTransform.cs
│ ├── MapRectangleParameter.cs
│ ├── MemCacheFuture.cs
│ ├── MemCachePrototype.cs
│ ├── MemoryCache.cs
│ ├── MercatorCoordinateSystem.cs
│ ├── OpenDocumentSensitivePrioritizedFuture.cs
│ ├── OpenDocumentSensitivePrioritizedPrototype.cs
│ ├── OpenDocumentSensitivePrioritizer.cs
│ ├── OpenDocumentStateObserverIfc.cs
│ ├── ParamDict.cs
│ ├── Parameter.cs
│ ├── PersistentInterest.cs
│ ├── PolynomialImageTransformer.cs
│ ├── Present.cs
│ ├── PresentDiskDispatcher.cs
│ ├── PresentFailureCode.cs
│ ├── RenderBoundsPresent.cs
│ ├── RenderedTileFetch.cs
│ ├── RenderedTileSource.cs
│ ├── RequestCanceledPresent.cs
│ ├── RetryableFailure.cs
│ ├── RobustHashTools.cs
│ ├── ScaleAndTranslate.cs
│ ├── SizedCacheRecord.cs
│ ├── SizedObject.cs
│ ├── SizeParameter.cs
│ ├── SizeSensitiveCache.cs
│ ├── SlowGeneralPolyPointTransformer.cs
│ ├── SourceDocument.cs
│ ├── SourceImageDownsamplerVerb.cs
│ ├── SourceMapRendererTools.cs
│ ├── SourceToLatLonTransform.cs
│ ├── StringParameter.cs
│ ├── StrongHash.cs
│ ├── SynchronizingFuture.cs
│ ├── TemporaryFailureException.cs
│ ├── TermName.cs
│ ├── TileAddressEnumerator.cs
│ ├── TileAddressToImageRegion.cs
│ ├── TileDisplayDescriptorArray.cs
│ ├── TileDisplayDescriptor.cs
│ ├── TransparencyFuture.cs
│ ├── TransparencyPrototype.cs
│ ├── UnevaluatedTerm.cs
│ ├── UnretryableFailure.cs
│ ├── UnseekableStream.cs
│ ├── UnwarpedMapTileSource.cs
│ ├── UserBoundsRefVerb.cs
│ ├── UserClipperVerb.cs
│ ├── VEAddressLayout.cs
│ ├── Verb.cs
│ ├── VerbPresent.cs
│ ├── VETileFetch.cs
│ ├── VETileSource.cs
│ ├── VETileUpsamplerVerb.cs
│ ├── WarpBoundsVerb.cs
│ ├── WarpedMapTileSource.cs
│ ├── WarpImageVerb.cs
│ ├── WebTileFetch.cs
│ ├── WPFOpenDocument.cs
│ ├── WPFOpenVerb.cs
│ └── WriteObjectFailedException.cs
├── MSR.CVE.BackMaker.ImagePipeline.AsynchronizerPrivate
│ └── AsynchronizerFuture.cs
├── MSR.CVE.BackMaker.MCDebug
│ ├── BigDebugKnob.cs
│ ├── Clocker.cs
│ ├── CountedEventWaitHandle.cs
│ ├── DiagnosticUI.cs
│ ├── DiagnosticUI.resources
│ ├── MakeObjectID.cs
│ ├── ResourceCounter.cs
│ └── WeakHashableObject.cs
├── MSR.CVE.BackMaker.Properties
│ ├── Resources.cs
│ ├── Resources.resources
│ └── Settings.cs
├── MSR.CVE.BackMaker.Resources
│ ├── Version.cs
│ └── Version.resources
└── obj
└── Debug
├── DesignTimeResolveAssemblyReferencesInput.cache
└── TempPE
378 directories, 1608 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论