osmdroidを使ってAndroidでOpenStreetMapを表示してみる
こんにちは@xsotaです。
この投稿はOpenStreetMap Advent Calendar 2016 20日目の記事です。
osmdroidを使って地図を表示したくなったので、なんとなくやってみました。
そのうちもっと突っ込んだネタを書いてみようかと思います。
OSM
osmdroid
osmdroidはOpen Street MapをAndroidで使えるようにする超すごいやつだよ
https://github.com/osmdroid/osmdroidOpen Street Map(OSM)
みんなで地図をつくる超すごいやつ
https://openstreetmap.jp/
つかってみるよ
まずはプロジェクトをEmptyActivtyとか指定しててきとうに作ってね。
repositories {
jcenter()
+ mavenCentral() //これを追加
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
+ compile 'org.osmdroid:osmdroid-android:5.6.2' // これを追加
}
これでosmdroidが使えるようになるよ!
AndroidManifestにいろいろpermission追加する
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
layoutにMapViewを追加するよ
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.xsota.osmdroidtest.MainActivity">
<org.osmdroid.views.MapView
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</RelativeLayout>
MainAvtivityとかにTileSourceとかタッチでズームできるようにする設定を書くよ
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
org.osmdroid.tileprovider.constants.OpenStreetMapTileProviderConstants.setUserAgentValue(BuildConfig.APPLICATION_ID);
MapView map = (MapView) findViewById(R.id.map);
map.setTileSource(TileSourceFactory.MAPNIK);
map.setBuiltInZoomControls(true);
map.setMultiTouchControls(true);
}
}
とりあえず地図を表示できるようになったよ
簡単にOpen Street Mapの地図を使ったアプリが作れるので、使ってみてはどうでしょうか。
「GoogleMapではアレができるのにosmdroidではできない!!!!」っていうネタがあったらチャレンジしてみたいので誰か教えて下さい。
それではさようなら。
Author And Source
この問題について(osmdroidを使ってAndroidでOpenStreetMapを表示してみる), 我々は、より多くの情報をここで見つけました https://qiita.com/xsota/items/c0c8ef48711c47ef018e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .