Closed GoogleCodeExporter closed 8 years ago
Original comment by neilboyd
on 4 Apr 2013 at 10:21
Hi,
as a replacement, try this:
OCMTileSource=new XYTileSource("TransportMap",null,
0,17,
256,
".png",
"http://a.tile2.opencyclemap.org/transport/",
"http://b.tile2.opencyclemap.org/transport/",
"http://c.tile2.opencyclemap.org/transport/");
This will show opencyclemap's transit map.
best regards,
béla
Original comment by vincze.b...@gmail.com
on 6 Apr 2013 at 12:26
Thank you, that work.
I found another solution. Choose Mapnik, or the one above as main map.
Openptmap.org provides a layer, exactly the same as the original one.
Put this as a tile overlay over your maP:
this.mProvider = new MapTileProviderBasic(getApplicationContext());
this.mCustomTileSource = new XYTileSource("Public", null, 1, 17, 256, ".png",
"http://openptmap.org/tiles/");
this.mProvider.setTileSource(this.mCustomTileSource);
this.mTilesOverlay = new TilesOverlay(mProvider, this.getBaseContext());
this.mOsmv.getOverlays().add(this.mTilesOverlay);
Then you will get the basically the same result.
Best Regards
Andreas
Original comment by finestyl...@gmail.com
on 6 Apr 2013 at 4:43
Original comment by neilboyd
on 10 Nov 2013 at 7:58
This issue was closed by revision r1385.
Original comment by neilboyd
on 10 Nov 2013 at 8:04
Original issue reported on code.google.com by
finestyl...@gmail.com
on 4 Apr 2013 at 9:11