#How to add Google Streetview images to CartoDB points ##Add points to CartoDB ##Run the following code in the SQL editor:
SELECT *,
'http://maps.googleapis.com/maps/api/streetview?size=300x190&location='||
ST_Y((the_geom))||','||ST_X((the_geom))||'&sensor=false&fov=110' as image
FROM tablename
##Set the infowindow popup as "image header" type, select "image" as the title field ##Click a point, be amazed.