I am currently working on the Google Maps API V3 over here
If you increase the distance from 21 to 23, an overlay image will appear on the map. The image has been loading for too long, and I decided to split it into different tiles to simplify the loading. I use an automatic tile cutter to cut an image into tiles.
I have problems with the script;
var OrgX = 31551;
var OrgY = 50899;
First question How do you find the X and Y values from a photoshop document?
Say, if I can solve the first question.
Second question Is the correct code below displaying tiles depending on the zoom level? Or am I missing any codes?
var BuildingsLayer = new google.maps.ImageMapType({
getTileUrl: function(coord, zoom) {
return "http://search.missouristate.edu/map/tilesets/baselayer/" + zoom + "_" + coord.x + "_" + coord.y + ".png";
},
tileSize: new google.maps.Size(256, 256),
isPng: true
});
map.overlayMapTypes.push(BuildingsLayer);