Si si lo so, solo che non funzione perchè il codice che ho adevvo è
var maptiler = new google.maps.ImageMapType({
getTileUrl : function(coord, zoom) {
var proj = map.getProjection();
var tileSize = 256 / Math.pow(2, zoom);
var tileBounds = new google.maps.LatLngBounds(proj.fromPointToLatLng(new google.maps.Point(coord.x * tileSize, (coord.y + 1) * tileSize)), proj.fromPointToLatLng(new google.maps.Point((coord.x + 1) * tileSize, coord.y * tileSize)));
if (mapBounds.intersects(tileBounds) && (zoom >= mapMinZoom) && (zoom <= mapMaxZoom))
return "/copertura/tile_rect/" + zoom + "/" + coord.x + "/" + coord.y + ".png";
else
return "http://www.maptiler.org/img/none.png";
},
tileSize : new google.maps.Size(256, 256),
isPng : true
});
ed io dovrei eseguirlo dentro la mia funzione facendo
this.test = {
test : function() {
maptiler.setOpacity(0);
}
}
solo che non fa nulla.....