GoogleStreetView
The GoogleStreetView Service provides access to the Google Street View Image API For more information, check out https://developers.google.com/maps/documentation/streetview/intro
Terms of use: https://developers.google.com/maps/terms
RPCS
- GoogleStreetView.getInfo(latitude: Latitude, longitude: Longitude, fieldofview: BoundedNumber<1, 120>, heading: BoundedNumber<0, 360>, pitch: BoundedNumber<-90, 90>)
Get Street View metadata of a location using coordinates.
Status explanation:
OK- No errors occurred.ZERO_RESULTS- No image could be found near the provided location.NOT_FOUND- The location provided could not be found.
Arguments:
latitude: Latitude(Latitude) - Latitude coordinate of locationlongitude: Longitude(Longitude) - Longitude coordinate of locationfieldofview: BoundedNumber<1, 120>(BoundedNumber) - Field of View of image, maximum of120heading: BoundedNumber<0, 360>(BoundedNumber) - Heading of viewpitch: BoundedNumber<-90, 90>(BoundedNumber) - Pitch of view,90to point up,-90to point down
Returns:
Object(Object) - Metadata information about the requested Street View.
- GoogleStreetView.getInfoFromAddress(location: String, fieldofview: BoundedNumber<1, 120>, heading: BoundedNumber<0, 360>, pitch: BoundedNumber<-90, 90>)
Get Street View metadata of a location using a location query.
Status explanation:
OK- No errors occurred.ZERO_RESULTS- No image could be found near the provided location.NOT_FOUND- The location provided could not be found.
Arguments:
location: String(String) - Address or Name of locationfieldofview: BoundedNumber<1, 120>(BoundedNumber) - Field of View of image, maximum of120heading: BoundedNumber<0, 360>(BoundedNumber) - Heading of viewpitch: BoundedNumber<-90, 90>(BoundedNumber) - Pitch of view,90to point up,-90to point down
Returns:
Object(Object) - Metadata information about the requested Street View.
- GoogleStreetView.getView(latitude: Latitude, longitude: Longitude, width: BoundedNumber<1, 2000>, height: BoundedNumber<1, 2000>, fieldofview: BoundedNumber<1, 120>, heading: BoundedNumber<0, 360>, pitch: BoundedNumber<-90, 90>)
Get Street View image of a location using coordinates
Arguments:
latitude: Latitude(Latitude) - Latitude coordinate of locationlongitude: Longitude(Longitude) - Longitude coordinate of locationwidth: BoundedNumber<1, 2000>(BoundedNumber) - Width of imageheight: BoundedNumber<1, 2000>(BoundedNumber) - Height of imagefieldofview: BoundedNumber<1, 120>(BoundedNumber) - Field of View of image, maximum of120heading: BoundedNumber<0, 360>(BoundedNumber) - Heading of viewpitch: BoundedNumber<-90, 90>(BoundedNumber) - Pitch of view,90to point up,-90to point down
Returns:
Image(Image) - Image of requested location with specified size and orientation
- GoogleStreetView.getViewFromAddress(location: String, width: BoundedNumber<1, 2000>, height: BoundedNumber<1, 2000>, fieldofview: BoundedNumber<1, 120>, heading: BoundedNumber<0, 360>, pitch: BoundedNumber<-90, 90>)
Get Street View image of a location from a location string
Arguments:
location: String(String) - Address or Name of locationwidth: BoundedNumber<1, 2000>(BoundedNumber) - Width of imageheight: BoundedNumber<1, 2000>(BoundedNumber) - Height of imagefieldofview: BoundedNumber<1, 120>(BoundedNumber) - Field of View of image, maximum of120heading: BoundedNumber<0, 360>(BoundedNumber) - Heading of viewpitch: BoundedNumber<-90, 90>(BoundedNumber) - Pitch of view,90to point up,-90to point down
Returns:
Image(Image) - Image of requested location with specified size and orientation
- GoogleStreetView.isAvailable(latitude: Latitude, longitude: Longitude, fieldofview: BoundedNumber<1, 120>, heading: BoundedNumber<0, 360>, pitch: BoundedNumber<-90, 90>)
Check for availability of imagery at a location using coordinates
Arguments:
latitude: Latitude(Latitude) - Latitude coordinate of locationlongitude: Longitude(Longitude) - Longitude coordinate of locationfieldofview: BoundedNumber<1, 120>(BoundedNumber) - Field of View of image, maximum of120heading: BoundedNumber<0, 360>(BoundedNumber) - Heading of viewpitch: BoundedNumber<-90, 90>(BoundedNumber) - Pitch of view,90to point up,-90to point down
Returns:
Boolean(Boolean) -trueif imagery is available
- GoogleStreetView.isAvailableFromAddress(location: String, fieldofview: BoundedNumber<1, 120>, heading: BoundedNumber<0, 360>, pitch: BoundedNumber<-90, 90>)
Check for availability of imagery at a location using an address
Arguments:
location: String(String) - Address or Name of locationfieldofview: BoundedNumber<1, 120>(BoundedNumber) - Field of View of image, maximum of120heading: BoundedNumber<0, 360>(BoundedNumber) - Heading of viewpitch: BoundedNumber<-90, 90>(BoundedNumber) - Pitch of view,90to point up,-90to point down
Returns:
Boolean(Boolean) -trueif imagery is available