Questions tagged [google-street-view-static-api]

For programming questions about the Google Street View Static API.

The Street View Static API embeds a static (non-interactive) Street View panorama or thumbnail into a web page without the use of JavaScript. Define the viewport with URL parameters sent through a standard HTTP request. The request returns a static image.

See the developer guides for all required and optional parameters, and example requests and responses.

14 questions
5
votes
1 answer

Trying to get location change to capture a static image with Google Street View Static API

I am trying to build an application using Ionic2 that allows a user to load a StreetViewPanorama object via the Google Street View Static API. Once the view is loaded, a user should be able to manipulate the street view in any way they choose (move…
1
vote
1 answer

Using geographical graph data to guide Google Street View Static API

I am trying to use geographical data - streets and intersections - derived from osmnx together with the Google Street View Static API to get street view images that are Taken from a intersection. Looks directly down the road. I have used osmnx…
tmo
  • 1,393
  • 1
  • 17
  • 47
0
votes
0 answers

Need to Open the Address link in a Salesforce record as Google Street View rather than Map View

I am a Salesforce administrator and I need to help my Sales team to save time. During the day the Salespeople are required to view in Street View for each record but the address link takes them to Google Map view rather than the Street View. How can…
0
votes
0 answers

How Trigger Mouse Click in Google Street View API?

I'm developing a page that contains the Google Street View panorama, but there are only a few events I can use and I need to create functionality where the user can click somewhere in the Street View and then create a marker up there. I already can…
0
votes
0 answers

How to get the 360° image from Google Street View

I am working on a project where I have developed a Python code that retrieves the 360° image of a specific point (lat, lon) using the Google Street View API. I used this request to obtain 4 images of the same point but with different headings, and…
0
votes
0 answers

Catch invalid street view locations and keep trying until a valid is found

I'm currently making a geoguessr replica using the street view API and maps SDK reliant on randomly generated coordinates. As one could guess, more often than not my coordinates are a location without a streetview image. My code is as follows: …
0
votes
0 answers

API Key not Found for google maps sdk for android

I've been struggling w this project for weeks now. Specifically getting the API Keys to work, I'm not sure what I'm doing wrong. My code is as follows: package com.example.hopefullyfinalgeoguessr; import android.os.Bundle; import…
0
votes
2 answers

Is there a way to extract depth from the google street view api?

I want to extract depth images using the google street view api. I am using python, and I am able to query rgb images, but I can't seem to obtain depth images. I came across this: https://github.com/proog128/GSVPanoDepth.js So, it seems depth should…
0
votes
0 answers

How to save a Google Street View static image to Firebase Storage

When I open a link like this in the browser to the Google Street View Static API https://maps.googleapis.com/maps/api/streetview?size=640x640&location=fifth%20avenue&key=... It works as it should for me, and I see the picture. My question is how I…
0
votes
1 answer

Google StreetViewService Reports Incorrect Status for Specific Location

I'm finding that StreetViewService is reporting a status "OK" for a latLng pair for which it has no image. Example code: let sv = new google.maps.StreetViewService(); let tokyo = {lat: 35.6895,lng: 139.6917}; sv.getPanorama({location: tokyo, radius:…
mix
  • 6,943
  • 15
  • 61
  • 90
0
votes
1 answer

Does Street View Static API support markers

Are markers supported in Street View Static API? I am not getting a marker back, and I see no documentation provided for using markers with street view static images.
Gregory Bologna
  • 270
  • 1
  • 6
  • 20
0
votes
2 answers

How can I render a requested image from Street View Static API using python?

I used requests: import requests url = 'https://maps.googleapis.com/maps/api/streetview?size=400x400&location=40.720032,-73.988354&heading=0&key=[YOUR KEY HERE]' r = requests.get(url) and I get this in r.contents (how do I turn these bytes to an…
-1
votes
1 answer

Is there a way to "know" whether there is censor/blur on a Street View Image?

For a research project at the institute I am working at, we are systematically collecting Street View Panoramas in certain areas. In our country (Germany), a lot of buildings are censored. As I understand it, this is because according to our laws,…
-1
votes
1 answer

Using images from Google Street View Static API without exposing key

I am trying to include Street View images on a React app. Here is the documentation for the API: Street View Static API When I make a simple fetch request to google I get a response that contains a URL to the street view image as a JPG…