| 程序包 | 说明 |
|---|---|
| com.mapuni.bigmap.tileprovider.modules |
| 限定符和类型 | 类和说明 |
|---|---|
class |
DatabaseFileArchive
使用sqlite数据库管理存储地图瓦片
(CREATE TABLE tiles (key INTEGER PRIMARY KEY, provider
TEXT, tile BLOB) where the key is the X/Y/Z coordinates bitshifted using the
following algorithm key = ((z << z) + x << z) + y)
|
class |
GEMFFileArchive |
class |
MBTilesFileArchive |
class |
ZipFileArchive
zip文件管理器
|
| 限定符和类型 | 方法和说明 |
|---|---|
static IArchiveFile |
ArchiveFileFactory.getArchiveFile(java.io.File pFile)
Return an implementation of
IArchiveFile for the specified file. |
IArchiveFile[] |
OfflineTileProvider.getArchives()
获得管理离线文件目录对象
|
| 限定符和类型 | 方法和说明 |
|---|---|
static void |
ArchiveFileFactory.registerArchiveFileProvider(java.lang.Class<? extends IArchiveFile> provider,
java.lang.String fileExtension)
Registers a custom archive file provider
|
| 构造器和说明 |
|---|
MapTileFileArchiveProvider(IRegisterReceiver pRegisterReceiver,
ITileSource pTileSource,
IArchiveFile[] pArchives)
The tiles may be found on several media.
|