0

Nutiteq でオープン サイクル マップ (オープン ストリート マップではない) を表示することはできますか?

また、このリンクのライブラリで気付きました:

MBTilesMapLayer.java クラスがないこと。しかし、AdvencedMap3D プロジェクトにはあります。そのためのライブラリもありますか、または Android プロジェクトで MBTiles を使用するにはどうすればよいですか?

4

1 に答える 1

1

Sure, you can use more or less any tile source where provider has allowed it (which excludes Google).

mapView.getLayers().setBaseLayer(new TMSMapLayer(new EPSG3857(), 0, 18, 6,
  "http://a.tile.opencyclemap.org/cycle/", "/", ".png"));

This is added now to Nutiteq Tile sources Wiki page also

For MBTiles you should use the MBTilesMapLayer.java from AdvancedMap3D project. This is up-to-date code and for most of the data source layers we keep open source code there, so you can tweak it for your needs.

于 2013-07-10T11:52:28.093 に答える