streetview

Calling StreetView in IPhone Maps App from External Application

I'm trying to make an external call to the google maps application on the iphone from my application and send it straight to "streetview" mode from two lat, lon coordinates. I've tried a variety of combinations, but each one just sends me to the safari browser on the iPhone and not to the maps application. Here is one of those tries: ...

Customising Google Streetview embed

Hiya, I'm using streetview as an embed in one of my pages. I'd really like to remove the streetview controls though, or at least change their position to the top right, instead of the default top left. My javascript code is controlling the embed, and the API documentation suggests that "streetview" is just another layer on top of the ...

How to project Lat/Lon coordinates on a panorama image?

Hi all, I have two sets of Latitude/Longitude coordinates. The first one is the coordinates of an equirectangular panorama picture. The second one of a point in sight. So it is on the picture. I need the x/y coordinates of the second point to draw it on the picture. In javascript. Example equirectangular panorama picture and applicat...

Google Maps V3 StreetView not displaying on second setVisible() call

EDIT: Heard back from Google, they've confirmed this is an issue on their end. EDIT2: my contact at Google has informed me they've fixed this bug. I've got a troublesome bug using the Google Maps V3 API. If you set up a map, switch to streetview, close streetview, then reopen, the imagery appears blank (though the controls still displ...

Street Viewer in ArcScene

Hi, I am changing a script that is used in ArcMap to create a UIControltool, which allows you that an available StreetView at a given coordinate in your Map pop-ups, to the ArcScene environment. I have the following problem: google opens but not at the right coordinates. I think there is an error in my definition of the spatial reference...

Automatic Streetview transition in Google Maps v3

If you go to http://maps.google.com and zoom in until Google runs out of map the viewer automatically transitions to Streetview-mode (at least if Streetview is available at the location you zoomed in on). I'm mucking around with the Google Maps v3 API. Is there a way to replicate the map-to-streetview effect here? I can enable Streetvie...

street view problem in IE8

i am working on google map,streetview. i am using below code. this is working fine in all browsers except I.E-8. how to solve this problem? anybody help me..i am giving link here which code i am using in my page ////here is my code//////// http://eisabainyo.net/weblog/2009/04/27/code-to-embed-google-map-and-street-view/comment-page-1/#c...

How do I use the full navigation zoom control in embedded street view iframes?

I'm trying to embed an iframe containing the google street view panorama object. Embedding works by passing a url to the iframe using the following options: <iframe width="562" height="314" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.de/?ie=UTF8&amp;amp;t=i&amp;amp;layer=c&amp;amp;cbll=LALTITU...

How to disable mouse wheel zoom on Google streetview?

Consider the following example code: http://code.google.com/apis/maps/documentation/javascript/examples/streetview-simple.html I can do scrollwheel: false on a mapOptions to disable mouse wheel zoom. The feature is not implemented on the streetview panoramaOptions. In Chrome, I can safely disable mouse wheel zoom on the streetview simp...

googlemaps - open streetview centred on marker from link in infowindow

I have a google map with several markers on it and I am wanting to have an html link in each marker info window that when clicked will change the map to streetview centered on that marker. So far I have the map & the links in the infowindows. Clicking the links opens streetview but it is centered on the centre of the map. What must I c...

How to tell if a Streetview exists before launching Streetview intent.

Launching a Streetview intent for a location doesn't guarantee that a Streetview exists for that location. If the Streetview doesn't exist, the user just sees a black screen that spins. Is there a way to programmatically check if it exists before launching the Streetview intent? ...

Android: using StreetView without starting an intent

Hello all, I'm working on a simple android app in which I want to, once the user has clicked a button on the main screen, display the streetview of known coordinates. I can create display a map like so: mapView = (MapView) findViewById(R.id.mapView); mapView.setBuiltInZoomControls(true); mapController = mapView.getControl...