“Wavy” edges in custom street view - bad image quality
“Wavy” edges in custom street view - bad image quality I've explored all documentation on googles street view javascript API which I'm using. I managed to show a custom 360° view on my test website. However the images/tiles are distorted. See a crop of the image image attached. Here you can see the distortion of the edges clearly. I'm using this javascript code on my website: <script> function initPano() { var panorama = new google.maps.StreetViewPanorama( document.getElementById('map'), {pano:'cdmx3d', visible:true, fullscreenControl:true, panControl:false, zoomControl:false, linksControl:true, addressControl:true}); panorama.registerPanoProvider(getCustomPanorama); } function getCustomPanoramaTileUrl(pano, zoom, tileX, tileY) { return 'http://www.cdmx3d.mx/Google/StreetView1/' + zoom + '_' + tileX + '_' + tileY + '.png'; } function getCustomPanorama(pano) { if (pano === 'cdmx3d...