Wasn't it estatio who wrote:

>I want to overlay http://www.yv5fih.org.ve/sammet/outputs/4_6_3.gif

Not Found: The requested URL /sammet/outputs/4_6_3.gif was not found on 
this server.

You can only display tiles from images that actually exist.

Consider either renaming your tiles to look like that (and inverting the 
zoom number), or

tilelayer.getTileUrl = function CustomGetTileUrl(a,b){
   return "http://www.yv5fih.org.ve/sammet/outputs/t%3fx=";
    +a.x+ "&y=" +a.y+"&z=" +b+ ".gif"};

The "%3f" seems to be required by your webservice. Without it, it gets 
the MIME type wrong. (I wouldn't have guessed that, but Firefox was 
smart enough to work it out.)

NOTE: Lots of people still use APIv1 (17-b) type zoom levels for custom 
tiles, but you seem to be numbering your tiles with APIv2 zoom numbers, 
so you don't want to perform that conversion in

NOTE: Using a 800x600 image as a tile is inefficient. The API will scale 
the tile down to 256x256, so you'll have fetched a 19kb file but the 
users will only see about 4kb worth of detail.

-- 
http://econym.org.uk/gmap
The Blackpool Community Church Javascript Team


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to