离线地图for SQLite

离线地图下载后保存在Sqlite中,如何将其发布成服务,并在webgis中调用呢?

准备软件

1.地图包数据库(sqlite数据库,建议使用太乐地图下载器下载)

2.离线地图服务软件MapServer.exe

 

操作步骤

1.将离线地图包放在程序目录 azdbs中

离线地图for SQLite_第1张图片

2.启动离线地图服务系统软件

离线地图for SQLite_第2张图片

3.通过地址 http://localhost:6080/arctiler/rest/services/dbmapserver/湖北省卫星

进行访问将离线地图包放在程序目录 azdbs中

4.测试程序

离线地图for SQLite_第3张图片

代码

以openlayers为例

var serverurl="http://localhost:6080/arctiler/rest/services/dbmapserver/湖北街道地图";
var tileLayer = new ol.layer.Tile({
	source: new ol.source.XYZ({
		tileUrlFunction: function(tileCoord) {
			var url = serverurl +"/" + tileCoord[0] + "/" + (-tileCoord[2] - 1) + "/" + tileCoord[1];
			//console.log(url);
			return url;
		},
		projection: 'EPSG:3857',
		minZoom: 1,
		maxZoom: 17,
	})
});
map.addLayer(tileLayer);

 

你可能感兴趣的:(GIS开发,太乐地图)