Skip to content

Instantly share code, notes, and snippets.

@xsota
Created September 12, 2016 12:19
Show Gist options
  • Save xsota/3d26bb1f58656e7f29fe6e73e672093d to your computer and use it in GitHub Desktop.
Save xsota/3d26bb1f58656e7f29fe6e73e672093d to your computer and use it in GitHub Desktop.
// 地図
final MapView map = (MapView) findViewById(R.id.map);
// map.setTileSource(TileSourceFactory.MAPNIK);
map.setBuiltInZoomControls(true); // ズームとかのコントローラ表示
map.setMultiTouchControls(true); // マルチタッチ有効
final ArrayList<OverlayItem> overlayItems = new ArrayList<>();
overlayItems.add(new OverlayItem("ふじやま","ここがふじやま",new GeoPoint(35.360556,138.727778)));
// icon用overlay
final ItemizedIconOverlay<OverlayItem> iconOverlay = new ItemizedIconOverlay<OverlayItem>(
MainActivity.this,
overlayItems,
null
);
map.getOverlays().add(iconOverlay);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment