在Android上创建离线地图

时间:2011-11-23 18:03:40

标签: java android eclipse osmdroid

我是Android应用开发的新手,我必须创建一个离线地图Android应用程序。

我使用Mobile Atlas Creator获取地图视图osmdroid .zip格式,我不知道如何在我的应用中添加它。

有人可以告诉我如何在我的应用中使用Osmdroid吗?如果您能提供逐步说明,我将不胜感激。

1 个答案:

答案 0 :(得分:4)

这是我在不久前制作的Osmdroid的绝对最小示例项目。

package osmdemo.demo;

import org.osmdroid.tileprovider.tilesource.TileSourceFactory;
import org.osmdroid.util.GeoPoint;
import org.osmdroid.views.MapController;
import org.osmdroid.views.MapView;

import android.app.Activity;
import android.os.Bundle;

// This is all you need to display an OSM map using osmdroid
public class OsmdroidDemoMap extends Activity {

    private MapView         mMapView;
    private MapController   mMapController;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.osm_main);
        mMapView = (MapView) findViewById(R.id.mapview);
        mMapView.setTileSource(TileSourceFactory.MAPNIK);
        mMapView.setBuiltInZoomControls(true);
        mMapController = mMapView.getController();
        mMapController.setZoom(13);
        GeoPoint gPt = new GeoPoint(51500000, -150000);
        //Centre map near to Hyde Park Corner, London
        mMapController.setCenter(gPt);
    }
}

osm_main.xml

中有这个
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >
    <org.osmdroid.views.MapView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent" 
        android:layout_height="fill_parent"
        android:id="@+id/mapview" />
</LinearLayout>

在构建路径中包含slf4j-android-1.5.8.jarosmdroid-android-3.0.5.jar。 (Google搜索从哪里获取)