Hi,
thank you for your helpful responses.
I managed to get a simple setup working:
- Tiled my map-image with magickTiler:
http://code.google.com/p/magicktiler/
- Just put that tile-hierarchy on my apache-webserver
- Import leafletJS into my simple html5-file and use it with one map-
canvas and the following code:
var map = new L.Map('map');
map.setView(new L.LatLng(0,0) , 1);
var mapUrl = 'http://<websrvipaddress>/leafletjs/tiles/{z}/{x}/
{y}.jpg',
mapAttribut = 'First testing Tile Layer. Image tiled by
magicktiler',
tileLayer = new L.TileLayer(mapUrl, {minZoom: 2, maxZoom:
6, attribution: mapAttribut, scheme: 'tms', tileSize: 256});
map.addLayer(tileLayer);
But I think, it still would be a good idead to provide a tutorial for
setups like this one. I would just use any large satelite-picture
available on google?! S.th. like this?
http://www.stfc.ac.uk/RALSpace/resources/image/jpg/TopsatLandscape2.jpg
Funny fact about Deep Zoom Composer: I got exactly the issue dealt
with in the thread below. Did they solve it? Not yet - after 3 - THREE
- years....
http://social.expression.microsoft.com/Forums/de-DE/deepzoomcomposer/thread/21eae720-269e-4771-843e-dd4e8193867d
Cheers,
Andreas
On Aug 12, 1:38 am, Damon Oehlman <
damon.oehl...@gmail.com> wrote:
> Andreas,
>
> Understand your frustration. Have you had a look at MapTiler?
>
>
http://www.maptiler.org/
>
> It's a tool designed to chop up a static map into tiles that you should be able to use with Tile5 or Leaflet. It does require the GDAL libraries to be installed which can be a bit of a pain.
>
> If someone can point me to a sample image that you would be happy to see used in a Tile5 tutorial I will put something together. It's obviously something that people really need and is not something that is obvious in any of the currently available libraries. Happy to do two tutorials:
>
> 1 - For a custom geographical map.
> 2 - For a tiled "deep zoom" style viewer.
>
> Cheers,
> Damon.
>
>
>
>
>
>
>
> On Thursday, 11 August 2011 at 10:12 PM, Andreas Schnieders wrote:
> > I'm a bit dissapointed right now. All these open-source things claim
> > to be "easy to use", "easy to set-up", "highly customisable" and
> > everything. But seriously: Why is everything resulting in setting up a
> > whole OSM-server-structure-something WITHOUT providing the possibility
> > to create my own tiles from my own map-image?
>
> > The problem about Seadragon is: I need platform-independency. So,
> > unless I didn't get it wrong, I'll have to stick to HTML5-libraries.
>
> > Isn't there a lightweight and straightforward way to generate tiles
> > from a large-size map-image and provide them on a lightweight server
> > usable by tile5 or leafletJS? I do not want to set up my own tilecache
> > or OSMcache with an OSM globefile and everything.
>
> > Kind regards and many thanks,
> > Andreas
>