google-street-view

Info Window wrong size on Google Maps API v3 Street View Service

一曲冷凌霜 提交于 2019-12-13 02:26:11
问题 The Setup: On the same page (inside the same map canvas), I have 2 info windows. The CSS for both of them is the same. The content is very similar. Initially, the Street View pano loads with an info window open. A button inside the info window is used to toggle between the regular map and Street View. The map has a second info window displayed with a button to go back to Street View. The Problem: One info window is resizing to fit the content and the other one is not, so it's displaying

Street View Map with Google Maps Using Text Address

倖福魔咒の 提交于 2019-12-12 10:36:10
问题 I have a google map on my wordpress single post page that grabs the address from 2 custom fields. It works fine, but now I'm trying to add a street view link/option. I have on my page -- <iframe width="100%" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://www.google.com/maps/embed/v1/place?q=<?php echo $add; ?>,%20<?php $terms = wp_get_post_terms(get_the_ID(), 'city-type'); if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){ foreach ( $terms as $term

Google Maps Embed API Panorama ID

℡╲_俬逩灬. 提交于 2019-12-12 09:49:02
问题 The URL for previous implementations of photosphere panoramas contained the pano ID, making it easy to embed a specific panorama in an iframe. I can't seem to track down ID in the new Google Maps. Is there any method of identifying the ID for a photosphere without resorting to Javascript? 回答1: I can find the ID two times. Here is an example: www.google.de/maps/place/Magdeburg/@52.1285424,11.6312738,3a,75y,98h,90t/data=!3m8!1e1!3m6!1s _k_6ZCbrOuYAAAQo8TPM1w !2e0!3e2!6s%2F%2Fgeo3.ggpht.com

How to detect if Google StreetView is available in an address/coordinates

流过昼夜 提交于 2019-12-12 08:06:19
问题 I'm making an app that uses the Google Street View Image API I have no problem getting an image of the street view based on the address/coordinates but - I want to detect if the specific address has a Street View image available (in order to show a different behavior for addresses that doesn't have it) The only idea I got so far is to read the pixels of the returned image and detect whether this is the image the I got when there is no image available Any other idea? Thanks! 回答1: Using google

URL scheme for the Google Street View App (Not Google Maps)

烈酒焚心 提交于 2019-12-12 07:27:19
问题 I'm using Google Cardboard with the Street View App. I want to be able to create a link that sends users directly into the Street View App to view a specific location. Within the Street View App I can create a link from a location, if it's a featured location within the app, the link it generates works perfectly and looks something like this: http://www.google.com/maps/streetview/#us-highlights/faneuil-hall-boston If it's not a featured location, the URL it generates is different and opens in

requestDisallowInterceptTouchEvent for Scrollview

心已入冬 提交于 2019-12-12 03:23:50
问题 I have a StreetViewPanoramaView inside a linearlayout inside a scrollview: <ScrollView android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/scrollview"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:id="@+id/linear"> <com.google.android.gms.maps.StreetViewPanoramaView android:id="@+id/street_view_panorama" android:layout_width="match_parent" android:layout_height="wrap_content"

Is it possible to use Bings street view with ASP.NET or Silverlight?

ⅰ亾dé卋堺 提交于 2019-12-12 01:18:35
问题 I wont write web application, which will use street view of Bing(or Googles one if it can be used by ASP.NET or Silverlight). I found SDK for Bing map: http://www.microsoft.com/maps/isdk/silverlight/ But I need streets 3D view. Is it possible? Thanks. 回答1: Yes, it's possible - see Bing Maps Extended Modes. Also check out these articles: http://www.bing.com/toolbox/blogs/maps/archive/2009/12/10/adding-streetside-and-enhanced-birds-eye-to-your-applications.aspx http://innovativesingapore.com

StreetViewPanaroma cannot be resolved to a type

冷暖自知 提交于 2019-12-11 20:57:02
问题 I m referring the code official code of Google maps StreetViewPanorama. but I m getting this always. StreetViewPanorama cannot be resolved to a type . How can I import this class. I have added the Google Play service lib project. and also I have set my project target to Google APIs x86[Android4.4.2] here is my project structure 回答1: Have you got the latest version of the Google Play Services library downloaded? You'll need version 4.4 to access the new StreetView classes. Andy. 来源: https:/

Google street view camera parameters

牧云@^-^@ 提交于 2019-12-11 13:58:14
问题 I am trying to reproduce the google street view camera in my rendering software. But I think that some parameters are missing because the result has a problem (scale or field of view distorsion ?). What I know : - camera position : I set it (latitude/longitude). - horizontal fov + pitch + heading : given by google API. But the real focal length is missing i.e. the sensor size or the crop factor or the focal length mutiplier . (different words for the same thing I think). Do you know if google

Google Maps iOS SDK - Add GMSPanoramaView in a SubView

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-11 06:54:41
问题 I'm trying to add a GMSPanoramaView to a SubView. Here is the code I'm working on : panoView_ = [[GMSPanoramaView alloc] initWithFrame:CGRectZero]; panoView_.delegate = self; self.view = panoView_; [panoView_ moveNearCoordinate:CLLocationCoordinate2DMake(emplLatitude, emplLongitude)]; This code renders the panorama on fullscreen mode. If I try this, nothing happens : self.myView = panoView_; Where myView outlet is set in my storyboard. This stack is a possible duplicate of this one which