BruTile-master

所属分类:图形图象
开发工具:C#
文件大小:5236KB
下载次数:1
上传日期:2016-05-27 09:25:51
上 传 者yuanbao
说明:  BruTile完全最新源码欢迎大家下载学习,谢谢。
(This project has move to github: https://github.com/BruTile/BruTile All code here has been removed to avoid confusion. This repository still holds the history but the history was also imported into github. So this repository is of real use.)

文件列表:
BruTile.Desktop (0, 2015-02-17)
BruTile.Desktop\BruTile.Desktop.csproj (2767, 2015-02-17)
BruTile.Desktop\Cache (0, 2015-02-17)
BruTile.Desktop\Cache\DbCache.cs (17698, 2015-02-17)
BruTile.Desktop\Cache\FileCache.cs (5390, 2015-02-17)
BruTile.Desktop\FileSystem (0, 2015-02-17)
BruTile.Desktop\FileSystem\FileTileProvider.cs (915, 2015-02-17)
BruTile.Desktop\Properties (0, 2015-02-17)
BruTile.Desktop\Properties\AssemblyInfo.cs (2112, 2015-02-17)
BruTile.Desktop\Web (0, 2015-02-17)
BruTile.Desktop\Web\GoogleRequest.cs (15753, 2015-02-17)
BruTile.Desktop\Web\GoogleTileSource.cs (2118, 2015-02-17)
BruTile.MbTiles.Pcl (0, 2015-02-17)
BruTile.MbTiles.Pcl\BruTile.MbTiles.Pcl.csproj (3108, 2015-02-17)
BruTile.MbTiles.Pcl\Cache (0, 2015-02-17)
BruTile.MbTiles.Pcl\Cache\MbTilesCache.cs (31478, 2015-02-17)
BruTile.MbTiles.Pcl\FileSystem (0, 2015-02-17)
BruTile.MbTiles.Pcl\FileSystem\MbTilesProvider.cs (1036, 2015-02-17)
BruTile.MbTiles.Pcl\MbTilesFormat.cs (658, 2015-02-17)
BruTile.MbTiles.Pcl\MbTilesTileSource.cs (3234, 2015-02-17)
BruTile.MbTiles.Pcl\MbTilesType.cs (563, 2015-02-17)
BruTile.MbTiles.Pcl\Properties (0, 2015-02-17)
BruTile.MbTiles.Pcl\Properties\AssemblyInfo.cs (1720, 2015-02-17)
BruTile.MbTiles.Pcl\packages.config (188, 2015-02-17)
BruTile.MbTiles (0, 2015-02-17)
BruTile.MbTiles\App.config (800, 2015-02-17)
BruTile.MbTiles\BruTile.MbTiles.csproj (4743, 2015-02-17)
BruTile.MbTiles\Cache (0, 2015-02-17)
BruTile.MbTiles\Cache\DbCache.cs (16611, 2015-02-17)
BruTile.MbTiles\Cache\MbTilesCache.cs (19271, 2015-02-17)
BruTile.MbTiles\FileSystem (0, 2015-02-17)
BruTile.MbTiles\FileSystem\MbTilesProvider.cs (1280, 2015-02-17)
BruTile.MbTiles\MbTilesFormat.cs (685, 2015-02-17)
BruTile.MbTiles\MbTilesTileSource.cs (2899, 2015-02-17)
BruTile.MbTiles\MbTilesType.cs (589, 2015-02-17)
BruTile.MbTiles\Properties (0, 2015-02-17)
BruTile.MbTiles\Properties\AssemblyInfo.cs (2360, 2015-02-17)
BruTile.MbTiles\packages.config (159, 2015-02-17)
... ...

[![Stories in Ready](https://badge.waffle.io/BruTile/BruTile.png?label=ready&title=Ready)](https://waffle.io/BruTile/BruTile) [![NuGet Status](http://img.shields.io/nuget/v/BruTile.svg?style=flat)](https://www.nuget.org/packages/BruTile/) ###BruTile BruTile is a C# open source library to access tile services like OpenStreetMap and Bing. BruTile has few dependencies, is platform independent and has a limited scope. It is intended for reuse by other more sophisticated libraries ###Get it from NuGet ` PM> Install-Package BruTile ` https://www.nuget.org/packages/BruTile ###Projects that use BruTile * [ArcBruTile] (https://arcbrutile.codeplex.com/) a plugin for ArcGIS * [SharpMap] (https://sharpmap.codeplex.com/) a GIS library * [Mapsui] (https://github.com/pauldendulk/Mapsui) a slippy map that runs in Silverlight * [DotSpatial] (https://dotspatial.codeplex.com/) a GIS library that is used in [HyrdroDesktop] (https://hydrodesktop.codeplex.com/) * [PDOK] (https://www.pdok.nl/nl/producten/pdok-software/pdok-extensie-voor-arcgis) extensie voor ArcGIS ###Demo Go [here] (http://brutiledemo.appspot.com/) for an online Silverlight demo of BruTile used in Mapsui ###Portable Class Library (PCL) BruTile is a PCL with Profile336 which targets: * .Net Framework 4.0.3 and higher * Windows 8 * Windows Phone Silverlight 8 * Silverlight 5 * Windows Phone 8.1 * Xamarin.iOS * Xamarin.Android ###For downward compatibility we also compile for: * .Net Framework 4.0 * .Net Framework 3.5 ###Supported tile service protocols: * TMS * OSM (TMS with inverted y-axis) * WMS-C * WMS (tiled requests to a regular WMS - like WMS-C) * WMTS * ArcGIS Tile Server ###Known tile sources: You can easily create an `ITileSource` for a number of specific tile servers with statements like: var tileSource1 = KnownTileSources.Create(KnownTileSource.OpenStreetMap) var tileSource2 = KnownTileSources.Create(KnownTileSource.MapQuestAerial) var tileSource3 = KnownTileSources.Create(KnownTileSource.BingHybrid) var tileSource4 = KnownTileSources.Create(KnownTileSource.StamenTonerLite) var tileSource5 = KnownTileSources.Create(KnownTileSource.EsriWorldShadedRelief) ###Roadmap Here are our future plans: * Update automatic TileSchema generation to bring WMTS, WMS, TMS and WMSC in line. * Rename all classes to get them in line with WMTS types. * Better samples * Better documentation * Release v1 ###Warnings Note, this library is work in progress. It is in BETA. * At the moment there is no documentation. * We will introduce breaking changed frequently. We change the API whenever we feel this is an improvement. * We adopt new technologies relatively fast, dropping support for older frameworks. * Although I do have a general plan of where to go with this library I do not have the resources to go towards that goal in a systematic way. I add functionality depending on what is needed in the projects I work on.

近期下载者

相关文件


收藏者