I want to create a link that takes me to the address' Google Street View. I found this: How to convert an address into a Google Maps Link (NOT MAP)
The solution for the question above was: http://maps.google.com/?q=1200 Pennsylvania Ave SE, Washington, District of Columbia, 20003
Is there a parameter I can add to the link to make it automatically go to Street View?
I am currently using the arcgis World Geocoder in my application, so I will try to pass the address entered into the link to google Street View.
function locate() {
map.graphics.clear();
var address = {
"SingleLine": dom.byId("address").value
};
locator.outSpatialReference = map.spatialReference;
var options = {
address: address
}
locator.addressToLocations(options);
}
Thank you!