Street View from the Google Maps SDK for iOS?

It seems that this question was not asked after a while ...

Any way to get street views from the Google Maps SDK for iOS?

I have a client who is specifically interested in the Google Maps Streetview feature for his application, but like most clients, he really does not want the feature to require going outside the application. (Here Android stands on iOS, with their ubiquitous back button. Sigh.) The need to view the streets is due to the clear benefit in this application in order to be able to see the actual images of buildings, lots, etc., Unlike 3D satellite images on Apple Maps, which is cool, but not very suitable for this application, because buildings, parties, etc. distorted.

I looked at the documentation for the Google Maps SDK for iOS, looking for a way to get a street view.

I also downloaded the SDK and skipped the demos.

There are no dice in any account.

I see that I can get to the street view image using the Google Street View Image API, which is better than nothing:

https://developers.google.com/maps/documentation/streetview/

Here is an example request from the documentation:

http://maps.googleapis.com/maps/api/streetview?size=400x400&location=40.720032,%20-73.988354&fov=90&heading=235&pitch=10&sensor=false

But by creating something in the application so that the user can change things such as size (using scaling), title, step, etc., it seems that I would "invent the wheel" and this is what would be available in SDK ...

Thanks!

Del

+4
source share
2 answers

The Google Maps iOS SDK 1.4 (released a few hours ago) has this feature:

+3
source

The best option currently available for accessing street views from google ios sdk maps seems to use the Google Maps scheme, which will call the official Google displays iphone application based on values ​​provided by the user from the user map application (using ios sdk) . Input values ​​that can be used with a URL scheme include:

1, mapmode: here you can select the streetview option to display the map in street view

2, center: central latitude, longitude point for the displayed map

3, scaling

4, views

0
source

Source: https://habr.com/ru/post/1491693/


All Articles