I am still having problem with creating tiles and how to overlap my tiles in the Google map.
Take this simple tutorial:
I think the tile URL should be here:
>>
var baseURL = 'images/';
baseURL += 'gall-peters_' + zoom + '_' + x + '_' + coord.y + '.png';
return baseURL;
If I copy paste the whole code and run it, why the images didn't show up?
If I alter the code :
var baseURL = 'images/';
baseURL += zoom + '_' + x + '_' + coord.y + '.png';
return baseURL;
I have images (PNG file) in my program, why the image still can't display on the map?
Thank you for answer my question.