Libor Zapletal
Libor Zapletal

Reputation: 14102

Getting outdoor only panoramas from Google Maps SDK for iOS

I am using this code to get Panorama near coordinates:

self.panoramaView = [[GMSPanoramaView alloc] initWithFrame:CGRectZero];
self.view = self.panoramaView;

[self.panoramaView moveNearCoordinate:self.coordinate];

GMSMarker *marker = [GMSMarker markerWithPosition:self.coordinate];
marker.icon = [UIImage imageNamed:@"PlacePin"];
marker.panoramaView = self.panoramaView;

I found that in Google API documentation there is source parameter with possible Outdoor value for getting only outdoor panoramas. Is it possible for iOS SDK? I can't find any paramater like this in documentation but I am not sure. Thanks

Upvotes: 1

Views: 194

Answers (1)

Stack
Stack

Reputation: 348

This option is only available in JavaScript API. No IOS or Android.

UPDATE:

As of February 6, 2018 this feature is available on iOS.

Maps SDK for iOS Version 2.6.0 - February 6, 2018

Added a Source attribute to Panorama searches allowing them to be restricted to outdoor-only results. Note that this feature is experimental and some searches may still include indoor panoramas.

https://developers.google.com/maps/documentation/ios-sdk/releases

Upvotes: 1

Related Questions