# JiboHotelServicesApi.TouristicInformationApi

All URIs are relative to *https://jiboinroom.accpmo.com/api/v1*

Method | HTTP request | Description
------------- | ------------- | -------------
[**touristicInformationGet**](TouristicInformationApi.md#touristicInformationGet) | **GET** /TouristicInformation | Get Touristic Information


<a name="touristicInformationGet"></a>
# **touristicInformationGet**
> Object touristicInformationGet(location, type)

Get Touristic Information

The Tourism Information endpoint returns places of interest near the JIBO&#39;s location using *Google Maps API*. 

### Example
```javascript
var JiboHotelServicesApi = require('jibo_hotel_services_api');

var apiInstance = new JiboHotelServicesApi.TouristicInformationApi();

var location = "location_example"; // String | Location of the current JIBO's hotel

var type = "type_example"; // String | Type of the information of the location wanted


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
apiInstance.touristicInformationGet(location, type, callback);
```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **location** | **String**| Location of the current JIBO&#39;s hotel | 
 **type** | **String**| Type of the information of the location wanted | 

### Return type

**Object**

### Authorization

No authorization required

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json

