0

Is it possible to show open cycle maps (not open street maps) with nutiteq?

Also I noticed in the library on this link:

That there is no MBTilesMapLayer.java class. But there is in the AdvencedMap3D project. Is there a library for that too or how can I user the MBTiles for my Android project?

tshepang
  • 12,111
  • 21
  • 91
  • 136
Tooroop
  • 1,824
  • 1
  • 20
  • 31

1 Answers1

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.

JaakL
  • 4,107
  • 5
  • 24
  • 37