我一直在努力让我自己的离线 Mobile Atlas Creator OSMDroid SQLite 地图与 OSMDroid 3.0.8 一起工作,但没有运气。这是漫长的3天。我将尝试用我的应用程序中的剪辑进行解释。我一直在扩展 ItemizedIconOverlay 和 OverlayItem 所以我希望它不会变得太混乱。
我创建了自己的 OSMDroid SQLite 地图文件,其中有 3 个不同的缩放级别,比如 10 平方公里。我将生成的“base.sqlite”文件复制到我的项目 /res/raw/ 目录中。请注意,我的应用程序中的 GeoPoints 应该在地图的瓦片范围内。“base.sqlite”文件应该保存到应用程序特定的数据目录中。
接下来,我整理了手机上的 /osmdroid 目录,这样我就可以关闭之前缓存的地图。我以为我自己的离线地图可以工作,直到我打开飞行模式并注意到缓存的地图仍然可用。
现在我得到的只是空白。我不知道该怎么做。我看过几个例子,但经过大量实验后,我没有成功让它们中的任何一个工作。
private Hashtable<String, NodeOverlayItem> nodes = new Hashtable<String, NodeOverlayItem>();
private MapView mapView;
private Context context;
private LocationManager locManager;
private MapController mapController;
private MapTileProviderArray mapProvider;
private String mapTileArchivePath = "base.sqlite";
private ResourceProxy resourceProxy;
@Override
public void onCreate(final Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
try {
this.mapView = new MapView(this, 256);
this.mapView.setBuiltInZoomControls(true);
this.mapView.setMultiTouchControls(true);
this.context = this.getApplicationContext();
this.resourceProxy = new DefaultResourceProxyImpl(context);
XYTileSource TILERENDERER = new XYTileSource("test",
ResourceProxy.string.offline_mode,
1, 20, 256, ".png", "http://127.0.0.1");
SimpleRegisterReceiver simpleReceiver = new SimpleRegisterReceiver(this.context);
IArchiveFile[] archives = { ArchiveFileFactory.getArchiveFile(this.getMapsFile()) };
MapTileModuleProviderBase moduleProvider = new MapTileFileArchiveProvider(
simpleReceiver,
TILERENDERER,
archives);
this.mapProvider = new MapTileProviderArray(TILERENDERER, null, new MapTileModuleProviderBase[] { moduleProvider });
this.mapProvider.setUseDataConnection(false);
this.mapView = new MapView(this, 256, this.resourceProxy, this.mapProvider);
this.mapView.setUseDataConnection(false);
mapController = mapView.getController();
mapController.setZoom(18);
mapController.setCenter(new GeoPoint((int)(45.349622 * 1E6), (int)(-75.880700 *1E6)));
this.setContentView(mapView);
} catch(Exception ex) {
Log.e("test", ex.getMessage());
}
}
public File getMapsFile() throws IOException {
Log.d("test", "Trying to load map tiles to: " + this.mapTileArchivePath);
FileOutputStream fos = this.openFileOutput(this.mapTileArchivePath, Context.MODE_PRIVATE);
InputStream in = getResources().openRawResource(R.raw.osmdroid);
byte[] buff = new byte[1024];
int read = 0;
try {
while ((read = in.read(buff)) > 0) {
fos.write(buff, 0, read);
}
} finally {
in.close();
fos.close();
}
return new File(this.getFilesDir(), this.mapTileArchivePath);
}