VIAJERO 0.1.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +91 -0
- data/LICENSE +21 -0
- data/README.md +24 -0
- data/Rakefile +40 -0
- data/VIAJERO.gemspec +30 -0
- data/apiformat.txt +37 -0
- data/bin/flight +25 -0
- data/bin/googleplace +19 -0
- data/bin/rent +20 -0
- data/bin/traffic +22 -0
- data/config/credentials.yml +4 -0
- data/coverage/.last_run.json +5 -0
- data/coverage/.resultset.json +362 -0
- data/coverage/.resultset.json.lock +0 -0
- data/coverage/assets/0.10.0/application.css +799 -0
- data/coverage/assets/0.10.0/application.js +1707 -0
- data/coverage/assets/0.10.0/colorbox/border.png +0 -0
- data/coverage/assets/0.10.0/colorbox/controls.png +0 -0
- data/coverage/assets/0.10.0/colorbox/loading.gif +0 -0
- data/coverage/assets/0.10.0/colorbox/loading_background.png +0 -0
- data/coverage/assets/0.10.0/favicon_green.png +0 -0
- data/coverage/assets/0.10.0/favicon_red.png +0 -0
- data/coverage/assets/0.10.0/favicon_yellow.png +0 -0
- data/coverage/assets/0.10.0/loading.gif +0 -0
- data/coverage/assets/0.10.0/magnify.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/coverage/index.html +2362 -0
- data/lib/VIAJERO.rb +2 -0
- data/lib/VIAJERO/airbnb_api.rb +31 -0
- data/lib/VIAJERO/flightInfo.rb +59 -0
- data/lib/VIAJERO/google_api.rb +37 -0
- data/lib/VIAJERO/google_api_inter.rb +37 -0
- data/lib/VIAJERO/internal.rb +43 -0
- data/lib/VIAJERO/rentInfo.rb +42 -0
- data/lib/VIAJERO/skyscanner_api.rb +28 -0
- data/lib/VIAJERO/trafficinfo.rb +53 -0
- data/lib/VIAJERO/version.rb +3 -0
- data/spec/.load_spec.rb.swp +0 -0
- data/spec/airbnbapi_spec.rb +25 -0
- data/spec/fixtures/cassettes/google_distances.yml +1087 -0
- data/spec/fixtures/cassettes/skyscanner_flights.yml +64 -0
- data/spec/googledistanceapi_spec.rb +39 -0
- data/spec/skyscanner_spec.rb +26 -0
- data/spec/spec_helper.rb +34 -0
- metadata +255 -0
data/lib/VIAJERO.rb
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
require 'http'
|
2
|
+
|
3
|
+
module Airbnb
|
4
|
+
# Service for all Airbnb API calls
|
5
|
+
class AirbnbApi
|
6
|
+
#Setting the URL and parameters
|
7
|
+
Airbnb_URL = 'https://api.airbnb.com/'
|
8
|
+
API_VER = 'v2'
|
9
|
+
Airbnb_API_URL = URI.join(Airbnb_URL, "#{API_VER}/")
|
10
|
+
Search_URL = URI.join(Airbnb_API_URL, "search_results")
|
11
|
+
|
12
|
+
def self.config=(credentials)
|
13
|
+
@config ? @config.update(credentials) : @config = credentials
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.config
|
17
|
+
return @config if @config
|
18
|
+
@config = { airbnb_id: ENV['AIRBNB_API'] }
|
19
|
+
end
|
20
|
+
|
21
|
+
def self.rooms_info(location)
|
22
|
+
rooms_response = HTTP.get(Search_URL,
|
23
|
+
params: { client_id: config[:airbnb_id],
|
24
|
+
location: location
|
25
|
+
})
|
26
|
+
roomsinfo = JSON.load(rooms_response.to_s)['search_results']
|
27
|
+
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
require_relative 'skyscanner_api'
|
2
|
+
|
3
|
+
module Skyscanner
|
4
|
+
class FlightInfo
|
5
|
+
attr_reader :flightInfo
|
6
|
+
|
7
|
+
def initialize(originData)
|
8
|
+
carrierId2Carrier = getCarrierId2Carrier(originData)
|
9
|
+
placeId2Place = getPlaceId2Place(originData)
|
10
|
+
@flightInfo = extractFlightInfo(carrierId2Carrier, placeId2Place, originData)
|
11
|
+
end
|
12
|
+
|
13
|
+
def flightInfo
|
14
|
+
@flightInfo
|
15
|
+
end
|
16
|
+
|
17
|
+
def self.find(market:, currency:, locale:, originPlace:, destinationPlace:, outboundPartialDate:)
|
18
|
+
originData = SkyscannerApi.getOriginData(market, currency, locale, originPlace, destinationPlace, outboundPartialDate)
|
19
|
+
new(originData)
|
20
|
+
end
|
21
|
+
|
22
|
+
private
|
23
|
+
def getCarrierId2Carrier(originData)
|
24
|
+
carriers = originData['Carriers']
|
25
|
+
carrierId2Carrier = Hash.new()
|
26
|
+
carriers.each do |carrier|
|
27
|
+
carrierId2Carrier[carrier['CarrierId']] = carrier['Name']
|
28
|
+
end
|
29
|
+
carrierId2Carrier
|
30
|
+
end
|
31
|
+
|
32
|
+
private
|
33
|
+
def getPlaceId2Place(originData)
|
34
|
+
places = originData["Places"]
|
35
|
+
placeId2Place = Hash.new()
|
36
|
+
places.each do |place|
|
37
|
+
if place["Type"] == "Station"
|
38
|
+
placeId2Place[place["PlaceId"]] = place["Name"] #+","+place["CountryName"]
|
39
|
+
end
|
40
|
+
end
|
41
|
+
placeId2Place
|
42
|
+
end
|
43
|
+
|
44
|
+
private
|
45
|
+
def extractFlightInfo(carrierId2Carrier, placeId2Place, originData)
|
46
|
+
quotes = originData["Quotes"]
|
47
|
+
quotes.each do |quote|
|
48
|
+
if(quote["OutboundLeg"]["CarrierIds"].empty? == false)
|
49
|
+
for i in 0..quote["OutboundLeg"]["CarrierIds"].length
|
50
|
+
quote["OutboundLeg"]["CarrierIds"][i] = carrierId2Carrier[quote["OutboundLeg"]["CarrierIds"][i]]
|
51
|
+
end
|
52
|
+
end
|
53
|
+
quote["OutboundLeg"]["OriginId"] = placeId2Place[quote["OutboundLeg"]["OriginId"]]
|
54
|
+
quote["OutboundLeg"]["DestinationId"] = placeId2Place[quote["OutboundLeg"]["DestinationId"]]
|
55
|
+
end
|
56
|
+
quotes
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
require 'http'
|
2
|
+
|
3
|
+
module Google
|
4
|
+
# Service for all Google API calls
|
5
|
+
class GoogleApi
|
6
|
+
#Setting the URL and parameters
|
7
|
+
Google_URL = 'https://maps.googleapis.com/maps/api/'
|
8
|
+
Search_Type = 'distancematrix'
|
9
|
+
Return_Type = 'json'
|
10
|
+
Google_API_URL = URI.join(Google_URL, "#{Search_Type}/", "#{Return_Type}")
|
11
|
+
#Search_URL = URI.join(Google_API_URL, "#{Parms}")
|
12
|
+
attr_reader :google_data
|
13
|
+
|
14
|
+
def self.config=(credentials)
|
15
|
+
@config ? @config.update(credentials) : @config = credentials
|
16
|
+
end
|
17
|
+
|
18
|
+
def self.config
|
19
|
+
return @config if @config
|
20
|
+
@config = { googlemap_id: ENV['GOOGLE_API'] }
|
21
|
+
end
|
22
|
+
|
23
|
+
def self.distanceInfo(origins, dest, mode)
|
24
|
+
return @distance if @distance
|
25
|
+
distanceDetail = HTTP.get(Google_API_URL,
|
26
|
+
params:
|
27
|
+
{
|
28
|
+
key: config['googlemap_id'],
|
29
|
+
origins: origins,
|
30
|
+
destinations: dest,
|
31
|
+
mode: mode
|
32
|
+
})
|
33
|
+
distance_data = JSON.load(distanceDetail.to_s)['rows'][0]['elements']
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
require 'http'
|
2
|
+
#search rating of places
|
3
|
+
module Google
|
4
|
+
# Service for all Google API calls
|
5
|
+
class InternalGoogleApi
|
6
|
+
#Setting the URL and parameters
|
7
|
+
Google_URL = 'https://maps.googleapis.com/maps/api/'
|
8
|
+
Search_Type = 'place/textsearch'
|
9
|
+
Return_Type = 'json'
|
10
|
+
Google_API_URL = URI.join(Google_URL, "#{Search_Type}/", "#{Return_Type}")
|
11
|
+
#Search_URL = URI.join(Google_API_URL, "#{Parms}")
|
12
|
+
#https://maps.googleapis.com/maps/api/place/textsearch/xml?query=清華大學&key=AIzaSyADFcZbph8b9jvV5D9zgrlOm2oMQpv6krI
|
13
|
+
attr_reader :google_data
|
14
|
+
|
15
|
+
def self.config=(credentials)
|
16
|
+
@config ? @config.update(credentials) : @config = credentials
|
17
|
+
end
|
18
|
+
|
19
|
+
def self.config
|
20
|
+
return @config if @config
|
21
|
+
@config = { googlemap_id: ENV['GOOGLE_API'] }
|
22
|
+
end
|
23
|
+
|
24
|
+
def self.this_rating(station)
|
25
|
+
return @this_rating if @this_rating
|
26
|
+
|
27
|
+
station_rating = HTTP.get(Google_API_URL,
|
28
|
+
params:
|
29
|
+
{
|
30
|
+
key: 'AIzaSyADFcZbph8b9jvV5D9zgrlOm2oMQpv6krI',
|
31
|
+
query: station
|
32
|
+
})
|
33
|
+
this_station_rating = JSON.load(station_rating.to_s)['results']
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
require_relative 'google_api_inter'
|
2
|
+
|
3
|
+
module Google
|
4
|
+
class GooglePlaceRating
|
5
|
+
attr_reader :rating_rawdata,:attracs
|
6
|
+
|
7
|
+
def initialize(data,input)
|
8
|
+
@googleapi = ENV['GOOGLE_API']
|
9
|
+
@queryVal = input[0]
|
10
|
+
@attracs = rating_analysis(data)
|
11
|
+
# @info = data[0]
|
12
|
+
end
|
13
|
+
|
14
|
+
def self.find(query:)
|
15
|
+
rating_rawdata = InternalGoogleApi.this_rating(query)
|
16
|
+
@queryRating_input = {googleapi:ENV['GOOGLE_API'],queryKey:query}
|
17
|
+
|
18
|
+
new(rating_rawdata,@queryRating_input)
|
19
|
+
end
|
20
|
+
|
21
|
+
def return_rating
|
22
|
+
@info
|
23
|
+
end
|
24
|
+
|
25
|
+
private
|
26
|
+
def rating_analysis(queryresult)
|
27
|
+
queryresult.map do |place|
|
28
|
+
{
|
29
|
+
rating: place['rating'],
|
30
|
+
lat: place['geometry']['location']['lat'],
|
31
|
+
lng: place['geometry']['location']['lng'],
|
32
|
+
placeid: place['place_id'],
|
33
|
+
types: place['types'],
|
34
|
+
address: place['formatted_address'],
|
35
|
+
placename: place['name'],
|
36
|
+
id: place['id'],
|
37
|
+
icon: place['icon'],
|
38
|
+
opening_hours: place['opening_hours']
|
39
|
+
}
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
require_relative 'airbnb_api'
|
2
|
+
|
3
|
+
module Airbnb
|
4
|
+
class RentInfo
|
5
|
+
attr_reader :location
|
6
|
+
attr_reader :infos
|
7
|
+
|
8
|
+
def initialize(rooms,info)
|
9
|
+
@infos = rooms.map { |item|
|
10
|
+
rooms = room(item)
|
11
|
+
}
|
12
|
+
searchVal(info)
|
13
|
+
end
|
14
|
+
|
15
|
+
def infos
|
16
|
+
@infos
|
17
|
+
end
|
18
|
+
|
19
|
+
def self.find(location:)
|
20
|
+
@search_info = {api:ENV['AIRBNB_API'],locate:location}
|
21
|
+
rooms_data = AirbnbApi.rooms_info(location)
|
22
|
+
new(rooms_data,@search_info)
|
23
|
+
end
|
24
|
+
|
25
|
+
private
|
26
|
+
def room(item)
|
27
|
+
#item = item['listing']
|
28
|
+
room = {
|
29
|
+
city: item['listing']['city'],
|
30
|
+
name: item['listing']['name'],
|
31
|
+
pic_url: item['listing']['picture_url'],
|
32
|
+
id: item['listing']['id']
|
33
|
+
}
|
34
|
+
end
|
35
|
+
|
36
|
+
def searchVal(oriSearch)
|
37
|
+
@location = oriSearch['locate']
|
38
|
+
@airbnbapi = oriSearch['api']
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
require 'http'
|
2
|
+
|
3
|
+
module Skyscanner
|
4
|
+
class SkyscannerApi
|
5
|
+
Skyscanner_URL = 'http://partners.api.skyscanner.net/apiservices/browseroutes/'
|
6
|
+
API_VER = 'v1.0'
|
7
|
+
Skyscanner_API_URL = URI.join(Skyscanner_URL, "#{API_VER}/")
|
8
|
+
|
9
|
+
def self.config=(credentials)
|
10
|
+
@config ? @config.update(credentials) : @config = credentials
|
11
|
+
end
|
12
|
+
|
13
|
+
def self.config
|
14
|
+
return @config if @config
|
15
|
+
@config = { skyscanner_id: ENV['SKYSCANNER_API'] }
|
16
|
+
end
|
17
|
+
|
18
|
+
def self.getOriginData(market, currency, locale, originPlace, destinationPlace, outboundPartialDate)
|
19
|
+
url = URI.join(Skyscanner_API_URL, market+"/", currency+"/", locale+"/", originPlace+"/", destinationPlace+"/", outboundPartialDate);
|
20
|
+
skyscanner_response = HTTP.get(url,
|
21
|
+
params: {
|
22
|
+
apiKey: config[:skyscanner_id]
|
23
|
+
})
|
24
|
+
print skyscanner_response
|
25
|
+
originData = JSON.load(skyscanner_response.to_s)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
require_relative 'google_api'
|
2
|
+
|
3
|
+
module Google
|
4
|
+
class TrafficInfo
|
5
|
+
attr_reader :infos
|
6
|
+
attr_reader :origins, :dest, :mode
|
7
|
+
attr_reader :anaDistance, :anaDuration, :fare
|
8
|
+
|
9
|
+
|
10
|
+
def initialize(distance,search)
|
11
|
+
|
12
|
+
parseSearch(search)
|
13
|
+
@googleapi = ENV['GOOGLE_API']
|
14
|
+
@infos = distance.map{ |item|
|
15
|
+
infos = info(item)
|
16
|
+
}
|
17
|
+
@info = distance[0]
|
18
|
+
end
|
19
|
+
|
20
|
+
def trafficAnaly
|
21
|
+
@anaDistance = @info['distance']['value']
|
22
|
+
@anaDuration = @info['duration']
|
23
|
+
if(@info['fare'])
|
24
|
+
@fare = @info['fare']
|
25
|
+
end
|
26
|
+
|
27
|
+
@info
|
28
|
+
|
29
|
+
end
|
30
|
+
|
31
|
+
def self.find(origins:,destinations:,mode:)
|
32
|
+
distance_data = GoogleApi.distanceInfo(origins,destinations,mode)
|
33
|
+
@search_info = {googleapi:ENV['GOOGLE_API'],originsVal:origins,destVal:destinations,modeVal:mode}
|
34
|
+
# @info = distance_data[0]
|
35
|
+
# print @info.to_s
|
36
|
+
|
37
|
+
new(distance_data,@search_info)
|
38
|
+
end
|
39
|
+
|
40
|
+
private
|
41
|
+
def parseSearch(sear)
|
42
|
+
@origins = sear[:originsVal]
|
43
|
+
@dest = sear[:destVal]
|
44
|
+
@mode = sear[:modeVal]
|
45
|
+
end
|
46
|
+
|
47
|
+
def info(item)
|
48
|
+
info = item
|
49
|
+
|
50
|
+
end
|
51
|
+
|
52
|
+
end
|
53
|
+
end
|
Binary file
|
@@ -0,0 +1,25 @@
|
|
1
|
+
require_relative 'spec_helper.rb'
|
2
|
+
|
3
|
+
describe 'Load specifications' do
|
4
|
+
VCR.configure do |c|
|
5
|
+
c.cassette_library_dir = CASSETTES_FOLDER
|
6
|
+
c.hook_into :webmock
|
7
|
+
|
8
|
+
c.filter_sensitive_data('<AIRBNB_ID>') {ENV['AIRBNB_API'] }
|
9
|
+
end
|
10
|
+
|
11
|
+
before do
|
12
|
+
VCR.insert_cassette CASSETTE_FILE_AIRBNB, record: :new_episodes
|
13
|
+
end
|
14
|
+
|
15
|
+
after do
|
16
|
+
VCR.eject_cassette
|
17
|
+
end
|
18
|
+
|
19
|
+
it 'should be able to get the data from Airbnb' do
|
20
|
+
airbnb_load = Airbnb::RentInfo.find(location: 'Hsinchu')
|
21
|
+
rooms = airbnb_load.infos
|
22
|
+
rooms.length.must_be :>,0
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
@@ -0,0 +1,1087 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://maps.googleapis.com/maps/api/distancematrix/json?destinations=Hsinchu&key=&mode=Train&origins=Taipei
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Connection:
|
11
|
+
- close
|
12
|
+
Host:
|
13
|
+
- maps.googleapis.com
|
14
|
+
User-Agent:
|
15
|
+
- http.rb/2.1.0
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Content-Type:
|
22
|
+
- application/json; charset=UTF-8
|
23
|
+
Date:
|
24
|
+
- Sun, 18 Dec 2016 09:34:10 GMT
|
25
|
+
Expires:
|
26
|
+
- Mon, 19 Dec 2016 09:34:10 GMT
|
27
|
+
Cache-Control:
|
28
|
+
- public, max-age=86400
|
29
|
+
Server:
|
30
|
+
- mafe
|
31
|
+
X-Xss-Protection:
|
32
|
+
- 1; mode=block
|
33
|
+
X-Frame-Options:
|
34
|
+
- SAMEORIGIN
|
35
|
+
Alt-Svc:
|
36
|
+
- quic=":443"; ma=2592000; v="35,34"
|
37
|
+
Accept-Ranges:
|
38
|
+
- none
|
39
|
+
Vary:
|
40
|
+
- Accept-Language,Accept-Encoding
|
41
|
+
Connection:
|
42
|
+
- close
|
43
|
+
body:
|
44
|
+
encoding: UTF-8
|
45
|
+
string: |
|
46
|
+
{
|
47
|
+
"destination_addresses" : [ "Hsinchu, East District, Hsinchu City, Taiwan" ],
|
48
|
+
"origin_addresses" : [ "Taipei City, Taiwan" ],
|
49
|
+
"rows" : [
|
50
|
+
{
|
51
|
+
"elements" : [
|
52
|
+
{
|
53
|
+
"distance" : {
|
54
|
+
"text" : "90.6 km",
|
55
|
+
"value" : 90619
|
56
|
+
},
|
57
|
+
"duration" : {
|
58
|
+
"text" : "1 hour 9 mins",
|
59
|
+
"value" : 4161
|
60
|
+
},
|
61
|
+
"status" : "OK"
|
62
|
+
}
|
63
|
+
]
|
64
|
+
}
|
65
|
+
],
|
66
|
+
"status" : "OK"
|
67
|
+
}
|
68
|
+
http_version:
|
69
|
+
recorded_at: Sun, 18 Dec 2016 09:34:10 GMT
|
70
|
+
- request:
|
71
|
+
method: get
|
72
|
+
uri: https://maps.googleapis.com/maps/api/place/textsearch/json?key=<GOOGLEMAP_ID>&query=%E6%B8%85%E8%8F%AF%E5%A4%A7%E5%AD%B8%20%E4%BA%A4%E9%80%9A%E5%A4%A7%E5%AD%B8%20%E9%A4%90%E5%BB%B3
|
73
|
+
body:
|
74
|
+
encoding: US-ASCII
|
75
|
+
string: ''
|
76
|
+
headers:
|
77
|
+
Connection:
|
78
|
+
- close
|
79
|
+
Host:
|
80
|
+
- maps.googleapis.com
|
81
|
+
User-Agent:
|
82
|
+
- http.rb/2.1.0
|
83
|
+
response:
|
84
|
+
status:
|
85
|
+
code: 200
|
86
|
+
message: OK
|
87
|
+
headers:
|
88
|
+
Content-Type:
|
89
|
+
- application/json; charset=UTF-8
|
90
|
+
Date:
|
91
|
+
- Sun, 18 Dec 2016 09:34:11 GMT
|
92
|
+
Expires:
|
93
|
+
- Sun, 18 Dec 2016 09:39:11 GMT
|
94
|
+
Cache-Control:
|
95
|
+
- public, max-age=300
|
96
|
+
Server:
|
97
|
+
- pablo
|
98
|
+
X-Xss-Protection:
|
99
|
+
- 1; mode=block
|
100
|
+
X-Frame-Options:
|
101
|
+
- SAMEORIGIN
|
102
|
+
Alt-Svc:
|
103
|
+
- quic=":443"; ma=2592000; v="35,34"
|
104
|
+
Accept-Ranges:
|
105
|
+
- none
|
106
|
+
Vary:
|
107
|
+
- Accept-Language,Accept-Encoding
|
108
|
+
Connection:
|
109
|
+
- close
|
110
|
+
body:
|
111
|
+
encoding: UTF-8
|
112
|
+
string: |
|
113
|
+
{
|
114
|
+
"html_attributions" : [],
|
115
|
+
"results" : [
|
116
|
+
{
|
117
|
+
"formatted_address" : "China, Beijing, Haidian, 清华西路",
|
118
|
+
"geometry" : {
|
119
|
+
"location" : {
|
120
|
+
"lat" : 40.00093710000001,
|
121
|
+
"lng" : 116.3225967
|
122
|
+
}
|
123
|
+
},
|
124
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
125
|
+
"id" : "fac74baa148d04988fa107e9d30eb662da65cff9",
|
126
|
+
"name" : "清華大學甲所餐廳",
|
127
|
+
"photos" : [
|
128
|
+
{
|
129
|
+
"height" : 5312,
|
130
|
+
"html_attributions" : [
|
131
|
+
"\u003ca href=\"https://maps.google.com/maps/contrib/115426371038903778876/photos\"\u003eAlex Au\u003c/a\u003e"
|
132
|
+
],
|
133
|
+
"photo_reference" : "CoQBdwAAAMjGEYN9KZYe8xpXdwJZ9IDZeIoKZLOYYuZShZxfaLSfh2XZWOOyx7_Zv377XmV_psBmxoQaSQ-ZAdb1JHdvh-kzguJV1lWQ303qa9mBC4EHk80Yvok92OtEYyU5bmrsvavivIkP2fajk8TBBbTG2OVljutd0kKZk1CFAkdRr4jqEhBNQZfiYhNyDDUArzCCCTUyGhT9mYFI3WrChis9X-fdjqUUXuznJA",
|
134
|
+
"width" : 2988
|
135
|
+
}
|
136
|
+
],
|
137
|
+
"place_id" : "ChIJHT953aBW8DURVF2m5YC3OKk",
|
138
|
+
"rating" : 3.9,
|
139
|
+
"reference" : "CmRSAAAAwIEbs6r-mJ4wlJjGu6h1VJhnlElBrN3Zp740FkYXOx_3rAtpYry4O6sG0-4CelfhTO-ljMv-VzkfbaqV7rU6PK0iYkaybXTBeEsvp5AwxXzpoQwXYEfqS4fA0fRjdj8zEhBpUDvfqkDEjTuFSKyv1ixsGhSDVk2FDpHE1SvId5wNSFIAis95Lw",
|
140
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
141
|
+
},
|
142
|
+
{
|
143
|
+
"formatted_address" : "China, 北京市海淀区清华大学西大操场北侧",
|
144
|
+
"geometry" : {
|
145
|
+
"location" : {
|
146
|
+
"lat" : 40.00680299999999,
|
147
|
+
"lng" : 116.322564
|
148
|
+
}
|
149
|
+
},
|
150
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
151
|
+
"id" : "c7ab42a13185e98801336cdac785c4dbdaeaa2d5",
|
152
|
+
"name" : "觀疇園",
|
153
|
+
"place_id" : "ChIJt_AfTKZW8DUR_N1MgVa9vN0",
|
154
|
+
"rating" : 3.8,
|
155
|
+
"reference" : "CmRSAAAAvug_D3P3F1ccrxddeBIVJnott0BvHozjU9GJ8Pm2yohT0wE_7KPfYBBx4KVO1rCkMMD6FuHF6TDC8FkWp9MRdwGC6iINhf5bWAo3G2Xhlbr0I1m4wt3_AytKWbtji9yoEhDHoVekL4XbRRU4xeDzlrowGhQrY3_ZvXn3eI0k60PT5vo0V0h-HQ",
|
156
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
157
|
+
},
|
158
|
+
{
|
159
|
+
"formatted_address" : "China, Beijing, Haidian, 双清路30号清华大学东北角留学生楼",
|
160
|
+
"geometry" : {
|
161
|
+
"location" : {
|
162
|
+
"lat" : 40.0103434,
|
163
|
+
"lng" : 116.3334399
|
164
|
+
}
|
165
|
+
},
|
166
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
167
|
+
"id" : "bb67539ea5d53f98177f766ee91a4866ce9126f6",
|
168
|
+
"name" : "清華大學芝蘭園自助餐廳",
|
169
|
+
"place_id" : "ChIJdb20QhlU8DUR7uiePNpbWD8",
|
170
|
+
"reference" : "CmRRAAAA9mDiJwwUEHflA3Hpi4zdtKcvMp4KoxDo55u2den93C8Luocl0Dr1VB5KjOFDXzG0CVeSW-jSeI-mTqccBbns9R5cuTYjf1Hrvn7tzDcXoYTAWJQ-T5hxtKOb5g1qzgS_EhBV9rRq5-DnEUxcxQ2aNfLRGhRfxoyAry-5NbKtBmkmW-QwWuhLWg",
|
171
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"formatted_address" : "China, 北京市海淀区清华园内",
|
175
|
+
"geometry" : {
|
176
|
+
"location" : {
|
177
|
+
"lat" : 40.010919,
|
178
|
+
"lng" : 116.325946
|
179
|
+
}
|
180
|
+
},
|
181
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
182
|
+
"id" : "490ee028bf1d3b711e4d07cd581e5966380f8007",
|
183
|
+
"name" : "清華大學桃李園餐廳",
|
184
|
+
"place_id" : "ChIJLwKNiARU8DURhFLord_0PJU",
|
185
|
+
"rating" : 4.1,
|
186
|
+
"reference" : "CmRSAAAAAIbcHwmD5asOWghmcVxt-10PBBTdURDTLyX55XSWkqpExqSuMSToAokN6XYlylWGkppcgsvFFgmElXFoON6UduNAFq8hd3VM5J4VW6kxsO8tgSV8rd1CM00o64QUu6ZREhCN4_4wnx6MWrQF0LZ6IdnMGhTANi8T0nRJ2gmQE1io-h3rcY-O7A",
|
187
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
188
|
+
},
|
189
|
+
{
|
190
|
+
"formatted_address" : "China, Beijing, Haidian, Qinghua W Rd, 清华园",
|
191
|
+
"geometry" : {
|
192
|
+
"location" : {
|
193
|
+
"lat" : 40.00179370000001,
|
194
|
+
"lng" : 116.3213541
|
195
|
+
}
|
196
|
+
},
|
197
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
198
|
+
"id" : "a6a7b5df6210d9d73356bcf4d84865f68c81d608",
|
199
|
+
"name" : "熙春園餐廳",
|
200
|
+
"place_id" : "ChIJTyRKLx5U8DURMhGTjDx3KqI",
|
201
|
+
"reference" : "CmRSAAAAI8aCU6_5-3okksEZdyQvfwEuZRxoTtJoOa-NIU0mkkHbAZNxzhilbUqBRaBM0LUm2DquAV_c7TY5PCwhA01H5icduIMlefXjDrqJRGroTGugtxX2Dl1lSI8mRQAhOBx4EhD2qGm3ti5dyt3ZDHd53aZAGhTUcXahJHshV_mDPXlspYOg4LkMWQ",
|
202
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
203
|
+
},
|
204
|
+
{
|
205
|
+
"formatted_address" : "30 Shuangqing Rd, Haidian, Beijing, China",
|
206
|
+
"geometry" : {
|
207
|
+
"location" : {
|
208
|
+
"lat" : 40.0053812,
|
209
|
+
"lng" : 116.3409392
|
210
|
+
},
|
211
|
+
"viewport" : {
|
212
|
+
"northeast" : {
|
213
|
+
"lat" : 40.00552984999999,
|
214
|
+
"lng" : 116.34110455
|
215
|
+
},
|
216
|
+
"southwest" : {
|
217
|
+
"lat" : 40.00533164999999,
|
218
|
+
"lng" : 116.34044315
|
219
|
+
}
|
220
|
+
}
|
221
|
+
},
|
222
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
223
|
+
"id" : "667d86202cd1c62fe873dcda5f10708adaaa176a",
|
224
|
+
"name" : "清華大學寓園餐廳",
|
225
|
+
"place_id" : "ChIJISyY8CNU8DUR_jDbGnd4G78",
|
226
|
+
"reference" : "CmRSAAAAihQak3NdMWQWNKzIMnpxnt5UVObwYboefoz58yEfqrVYrp8hjhSsirgmebWKva93fuhNXuY01B5nm075nAiqqd-SqgGpt3DY-yaEE6z5mNFPU25tQ4Tn6vR91os7cV67EhBOA0Z3WeDAGs_HITT6op8QGhTalJfsJ_8QZNeBFghG85j2wU6KfA",
|
227
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
228
|
+
},
|
229
|
+
{
|
230
|
+
"formatted_address" : "China, 北京市海淀区清华大学紫荆园紫荆餐厅B1楼",
|
231
|
+
"geometry" : {
|
232
|
+
"location" : {
|
233
|
+
"lat" : 40.01155300000001,
|
234
|
+
"lng" : 116.3286348
|
235
|
+
}
|
236
|
+
},
|
237
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
238
|
+
"id" : "ac39e77369582c53bba0792882c32ed33c08e57d",
|
239
|
+
"name" : "清青比薩",
|
240
|
+
"place_id" : "ChIJm_xxKx5U8DURzIBe5o46Vck",
|
241
|
+
"reference" : "CmRSAAAA_ag_EgzIxrBrfYzEELXOab2IzRgdVHU-dMRT9HdEKYGg9ED6Bf2_ZzInmbTgqrcnx13QMPYMsLMr5w_VLTVvEL4643GvWgp3eG0J2hBbpuKmIT8Js1ILw6HhSg2plzs7EhC1kwJfYGpWVB1dvWd-N2d5GhQC3_WhSbGXgvTcbvkHMfwQ5dfZOg",
|
242
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
243
|
+
}
|
244
|
+
],
|
245
|
+
"status" : "OK"
|
246
|
+
}
|
247
|
+
http_version:
|
248
|
+
recorded_at: Sun, 18 Dec 2016 09:34:11 GMT
|
249
|
+
- request:
|
250
|
+
method: get
|
251
|
+
uri: https://maps.googleapis.com/maps/api/place/textsearch/json?key=<GOOGLEMAP_ID>&query=%E6%96%B0%E7%AB%B9%20%E9%A4%90%E5%BB%B3
|
252
|
+
body:
|
253
|
+
encoding: US-ASCII
|
254
|
+
string: ''
|
255
|
+
headers:
|
256
|
+
Connection:
|
257
|
+
- close
|
258
|
+
Host:
|
259
|
+
- maps.googleapis.com
|
260
|
+
User-Agent:
|
261
|
+
- http.rb/2.1.0
|
262
|
+
response:
|
263
|
+
status:
|
264
|
+
code: 200
|
265
|
+
message: OK
|
266
|
+
headers:
|
267
|
+
Content-Type:
|
268
|
+
- application/json; charset=UTF-8
|
269
|
+
Date:
|
270
|
+
- Sun, 18 Dec 2016 09:46:10 GMT
|
271
|
+
Expires:
|
272
|
+
- Sun, 18 Dec 2016 09:51:10 GMT
|
273
|
+
Cache-Control:
|
274
|
+
- public, max-age=300
|
275
|
+
Server:
|
276
|
+
- pablo
|
277
|
+
X-Xss-Protection:
|
278
|
+
- 1; mode=block
|
279
|
+
X-Frame-Options:
|
280
|
+
- SAMEORIGIN
|
281
|
+
Alt-Svc:
|
282
|
+
- quic=":443"; ma=2592000; v="35,34"
|
283
|
+
Accept-Ranges:
|
284
|
+
- none
|
285
|
+
Vary:
|
286
|
+
- Accept-Language,Accept-Encoding
|
287
|
+
Connection:
|
288
|
+
- close
|
289
|
+
body:
|
290
|
+
encoding: UTF-8
|
291
|
+
string: |
|
292
|
+
{
|
293
|
+
"html_attributions" : [],
|
294
|
+
"next_page_token" : "CuQB2gAAAHMhhWGXq6DEY5Qy_etMBGbRkAiGh4yFwiGHXPkWrAsMxJH9c8JM7Ez4X3R5Vr4sSjuQjA9dUTe2JnvBsnkyaRG9PwUcbbSYAQTsqzUqm8E1nee-Oalzp_0CKN9gsbnjqX_EWBBWSMODyk_do9_0NQFOs1BEW1DZF9YNe6RD5tKLWuBg-mMJRzI3iE76utzcyie4LeXSroZKZJIDowtz1fl1oW4AIjgwXkWDvbtil0bhliqA74SNX3oPR8rFb_2rsxkoZFSnn5ctLa5-CDKjoU1R_xPxV3RbVjWT_ORohO9JEhAqUtgt6GGn1aDp4IUyozqpGhTf2AiEa__2b10SlZgMoE-sCHkXqQ",
|
295
|
+
"results" : [
|
296
|
+
{
|
297
|
+
"formatted_address" : "No. 55, Guanghua South Street, North District, Hsinchu City, Taiwan 300",
|
298
|
+
"geometry" : {
|
299
|
+
"location" : {
|
300
|
+
"lat" : 24.816425,
|
301
|
+
"lng" : 120.972844
|
302
|
+
},
|
303
|
+
"viewport" : {
|
304
|
+
"northeast" : {
|
305
|
+
"lat" : 24.81672515,
|
306
|
+
"lng" : 120.97300345
|
307
|
+
},
|
308
|
+
"southwest" : {
|
309
|
+
"lat" : 24.81632494999999,
|
310
|
+
"lng" : 120.97279085
|
311
|
+
}
|
312
|
+
}
|
313
|
+
},
|
314
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
315
|
+
"id" : "753f6acb288f6ea939c9db8933f5561ad6174e9d",
|
316
|
+
"name" : "紳士帽英式主題餐廳",
|
317
|
+
"opening_hours" : {
|
318
|
+
"open_now" : true,
|
319
|
+
"weekday_text" : []
|
320
|
+
},
|
321
|
+
"photos" : [
|
322
|
+
{
|
323
|
+
"height" : 1331,
|
324
|
+
"html_attributions" : [
|
325
|
+
"\u003ca href=\"https://maps.google.com/maps/contrib/105935769116408465216/photos\"\u003e紳士帽英式主題餐廳\u003c/a\u003e"
|
326
|
+
],
|
327
|
+
"photo_reference" : "CoQBdwAAAIumkQh0oM4tEYU12LRRPRxp2McUJxE80bEekFEwqDb5fPSQIOu3RWfRXGYf_DNsf_VjQVA6JGyFFvjaoAIwkji9fvq3dwMb_UFnEiYYpk5tmsz8qdTKjZHM3Dv6pBO-CTLXWwx3Q5wyh6SJtYp9E96cpXQr5fQsDBCIJE0-DpLIEhDbbSZG9gqdlVrQfRWXW31cGhSA46wTaP8gPvksApodb79RoQj5bQ",
|
328
|
+
"width" : 1309
|
329
|
+
}
|
330
|
+
],
|
331
|
+
"place_id" : "ChIJU9Co9s41aDQR6bWaQDBr4xg",
|
332
|
+
"rating" : 4.1,
|
333
|
+
"reference" : "CmRRAAAAV8iJcZPIsAPxrUFpxbeqxKSVaBMgDhLssJwwDcUvvGGDCpR6dzi1H2c1IkXkmzi7TDgjYMZqwAvz3jIGCYQbm_kbBdvyZlAX42PP3Y26LE3VscnxY-Czv0isJVs28hb1EhCqSo0Yj2S--3m4MH0rQA51GhSVomFAgBFsiWysGmwH2f3cOrcKdw",
|
334
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
335
|
+
},
|
336
|
+
{
|
337
|
+
"formatted_address" : "No. 525, Nanda Rd, East District, Hsinchu City, Taiwan 300",
|
338
|
+
"geometry" : {
|
339
|
+
"location" : {
|
340
|
+
"lat" : 24.7916412,
|
341
|
+
"lng" : 120.9642031
|
342
|
+
},
|
343
|
+
"viewport" : {
|
344
|
+
"northeast" : {
|
345
|
+
"lat" : 24.79171315,
|
346
|
+
"lng" : 120.964286
|
347
|
+
},
|
348
|
+
"southwest" : {
|
349
|
+
"lat" : 24.79142534999999,
|
350
|
+
"lng" : 120.9639544
|
351
|
+
}
|
352
|
+
}
|
353
|
+
},
|
354
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
355
|
+
"id" : "4e9155355367ed16664668b76f74e3274033373f",
|
356
|
+
"name" : "Buono Bella 義大利餐廳",
|
357
|
+
"opening_hours" : {
|
358
|
+
"open_now" : false,
|
359
|
+
"weekday_text" : []
|
360
|
+
},
|
361
|
+
"photos" : [
|
362
|
+
{
|
363
|
+
"height" : 2448,
|
364
|
+
"html_attributions" : [
|
365
|
+
"\u003ca href=\"https://maps.google.com/maps/contrib/107529505455021302840/photos\"\u003eE-SKIN JUAN\u003c/a\u003e"
|
366
|
+
],
|
367
|
+
"photo_reference" : "CoQBdwAAAF_KpNHtKFRvpquxbmvI7wlpoRnb2zAWEZq6jaQgOz68R9_Ol4-1pVlZX6i50g-02_t57nPEpisTu_07h_HZ60d27_pp8dkFzDD4chM8FbLTrI_hE62FgiLcJ-7-AJG5hWTJJOczBE23dqhyWu0PVb51K-zRVjJnlOOEjKHhGvl0EhDH4oNX5V1kyR7PqMF3O7_cGhS0bLD1UVuAmh_t52jj-gTpfyhu9A",
|
368
|
+
"width" : 3264
|
369
|
+
}
|
370
|
+
],
|
371
|
+
"place_id" : "ChIJcQLVMO01aDQRr6tYVA2TerA",
|
372
|
+
"rating" : 3.9,
|
373
|
+
"reference" : "CmRSAAAAffXS9FiVIADyyy-M3VK8cn2AuhHCWUBpo1D-_glwgjvrd7XzGD9LyYhoj2ey4f8qzGGQS6As0SzwJhcE96bexLcFVzBEcJHcg6sThuKZB8xcWJGJarjtyfvpO6CMAyLHEhCZETk5ZFLO298OPAi_eantGhS0OPgSAZ8FTQewzx1yQgviEvso0Q",
|
374
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
375
|
+
},
|
376
|
+
{
|
377
|
+
"formatted_address" : "No. 102, Shengli Rd, East District, Hsinchu City, Taiwan 300",
|
378
|
+
"geometry" : {
|
379
|
+
"location" : {
|
380
|
+
"lat" : 24.8009729,
|
381
|
+
"lng" : 120.9688105
|
382
|
+
},
|
383
|
+
"viewport" : {
|
384
|
+
"northeast" : {
|
385
|
+
"lat" : 24.800999,
|
386
|
+
"lng" : 120.9688714
|
387
|
+
},
|
388
|
+
"southwest" : {
|
389
|
+
"lat" : 24.8008974,
|
390
|
+
"lng" : 120.9687894
|
391
|
+
}
|
392
|
+
}
|
393
|
+
},
|
394
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
395
|
+
"id" : "69a29e973691dada2374583852ab9cc6681ee4a3",
|
396
|
+
"name" : "SQUARE'S格子美式餐廳 勝利店",
|
397
|
+
"opening_hours" : {
|
398
|
+
"open_now" : true,
|
399
|
+
"weekday_text" : []
|
400
|
+
},
|
401
|
+
"photos" : [
|
402
|
+
{
|
403
|
+
"height" : 1039,
|
404
|
+
"html_attributions" : [
|
405
|
+
"\u003ca href=\"https://maps.google.com/maps/contrib/107145998922303974534/photos\"\u003e楊育慈\u003c/a\u003e"
|
406
|
+
],
|
407
|
+
"photo_reference" : "CoQBdwAAAHcl03oUbYJ1nNp_j9zMBCu8EOj4bkRbhPS9Nx-1CQP9gX3C0GBTCEm-6EXe8c3ww4h91v6BxwwpbzYDZwToXjhSvMQg0CZo7tG-8d7IpWJqdhp0JVBaA6ZejmlOEZoewK4gxV_PRtk1cue4mzuBbg5myM37tdv4bxUXIwNaGygEEhATF4y8nP6TGENf1W_XRf3bGhRd4oaaoh0wDDKgdjav1gq1x_7XKA",
|
408
|
+
"width" : 1847
|
409
|
+
}
|
410
|
+
],
|
411
|
+
"place_id" : "ChIJDf7dBeo1aDQRu49Xo9_f5Ng",
|
412
|
+
"rating" : 3.7,
|
413
|
+
"reference" : "CmRSAAAAaxgnVqJ7pxkSjHq5A-Qiaih-4lmgLkv9xkF3soIzMNJEuhpOz2fNYV1hW1scNYuxnlb267cAu7rIue7Hjx1obXoRwLv0Y-Q2cM2o3Lwtb6b8kL4s1j_UaYwY4KQTRG0lEhBLW55SwiAcczzgG5KjyOtVGhQfR10TT_rcJTOJoyxB7bpcdGTM_w",
|
414
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
415
|
+
},
|
416
|
+
{
|
417
|
+
"formatted_address" : "No. 8, Siwei Rd, East District, Hsinchu City, Taiwan 300",
|
418
|
+
"geometry" : {
|
419
|
+
"location" : {
|
420
|
+
"lat" : 24.7976446,
|
421
|
+
"lng" : 120.9634987
|
422
|
+
},
|
423
|
+
"viewport" : {
|
424
|
+
"northeast" : {
|
425
|
+
"lat" : 24.7977196,
|
426
|
+
"lng" : 120.9635507
|
427
|
+
},
|
428
|
+
"southwest" : {
|
429
|
+
"lat" : 24.7976196,
|
430
|
+
"lng" : 120.9633875
|
431
|
+
}
|
432
|
+
}
|
433
|
+
},
|
434
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
435
|
+
"id" : "74afdd294a628ac3de66a1ffc32e8849f85c9724",
|
436
|
+
"name" : "橋下 Restaurant & Bar",
|
437
|
+
"opening_hours" : {
|
438
|
+
"open_now" : true,
|
439
|
+
"weekday_text" : []
|
440
|
+
},
|
441
|
+
"photos" : [
|
442
|
+
{
|
443
|
+
"height" : 1836,
|
444
|
+
"html_attributions" : [
|
445
|
+
"\u003ca href=\"https://maps.google.com/maps/contrib/108652935845345597321/photos\"\u003e黃正憲\u003c/a\u003e"
|
446
|
+
],
|
447
|
+
"photo_reference" : "CoQBdwAAAAdypXfxK2RYR_gD6n8aSRTIJFn2q2Ij4IqPgBNcER8aknkFstAmBXhOyfwwVNDEcI8dXZd8-HyOqDo7O6GML8QGBRuBf5o62o-GvZaFw_foE53owekV8FMjmawJMw1UneJBJmDYUH2R0uNAsf1ArlJzXQwB2u8AH6Jv2VzqX_THEhB_n60cDAnqvX8944w393EJGhSwut6Dkv8vzrjM78yDXy6IMuYDHg",
|
448
|
+
"width" : 3264
|
449
|
+
}
|
450
|
+
],
|
451
|
+
"place_id" : "ChIJ4Y1TLu01aDQRyrARgAxLJ44",
|
452
|
+
"rating" : 4,
|
453
|
+
"reference" : "CmRSAAAAiZZ_S4PaSRna7lYGkEJdpyHuqrgPI3WackEZrRFChYaieY6C956pBS8j4m-Vir0TZBVr-FgLaj9kv_Ce-3HEpHveT_tqVt-xk29fnA-3IKKC2VDmMWeiNzVS9VoGxNNZEhAy-VMnmULirRzx9watUkDdGhTmGz0xN2QvhAffV5i7vtc1niPE_g",
|
454
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
455
|
+
},
|
456
|
+
{
|
457
|
+
"formatted_address" : "300, Taiwan, Hsinchu City, East District, Section 2, Zhonghua Rd, 188號12樓",
|
458
|
+
"geometry" : {
|
459
|
+
"location" : {
|
460
|
+
"lat" : 24.8064019,
|
461
|
+
"lng" : 120.978266
|
462
|
+
},
|
463
|
+
"viewport" : {
|
464
|
+
"northeast" : {
|
465
|
+
"lat" : 24.80644805,
|
466
|
+
"lng" : 120.97838135
|
467
|
+
},
|
468
|
+
"southwest" : {
|
469
|
+
"lat" : 24.80626345,
|
470
|
+
"lng" : 120.97822755
|
471
|
+
}
|
472
|
+
}
|
473
|
+
},
|
474
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
475
|
+
"id" : "6842c6ae323b25565a5ea27b5f214f0a6567c0dc",
|
476
|
+
"name" : "(新竹國賓大飯店)八方燴",
|
477
|
+
"opening_hours" : {
|
478
|
+
"open_now" : true,
|
479
|
+
"weekday_text" : []
|
480
|
+
},
|
481
|
+
"photos" : [
|
482
|
+
{
|
483
|
+
"height" : 480,
|
484
|
+
"html_attributions" : [
|
485
|
+
"\u003ca href=\"https://maps.google.com/maps/contrib/103620196350590788068/photos\"\u003e瑩鈞朱\u003c/a\u003e"
|
486
|
+
],
|
487
|
+
"photo_reference" : "CoQBdwAAANArIkrJXqt4X-dzSaIv3I3uV9pmv-YYZJO2GzKTNpEuiBqyDSwpOgRbro-j5qFZSDvUdQ1A1Izr01bhwEf9lWacw2bf9zmeSXl-RjaQnsszBjZbO1oFKGLtmlFofUgL_26lCBwZ0WK-1xygQU2KC7SiiI5B4_1GXFH0HSZal9nSEhC7X1cosRSrf-KRGhK3mUkoGhT2LWCrIn8fUzDRjk0yeTv5bLFp7w",
|
488
|
+
"width" : 720
|
489
|
+
}
|
490
|
+
],
|
491
|
+
"place_id" : "ChIJR_o5Y9s1aDQRrEDZF6tSzeU",
|
492
|
+
"rating" : 3.7,
|
493
|
+
"reference" : "CmRSAAAAyIP3FqzAH5E9CrnbI4ezOW5kul_ucjCalf4CLEalpmm5kr02iLfAtUVK8_T9EFh4nPNkJ9la6x79cGwA6ahoOgjR41-pYrQ9xgDEJCJGZRgD5fcMH2bpDaBL6_a6LZFuEhCRjVJX3CPS5h_6rJSYonQbGhQYlzsisSnyyGP_4pzosXjOVnT21Q",
|
494
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
495
|
+
},
|
496
|
+
{
|
497
|
+
"formatted_address" : "No. 12, Fuxing Rd, East District, Hsinchu City, Taiwan 300",
|
498
|
+
"geometry" : {
|
499
|
+
"location" : {
|
500
|
+
"lat" : 24.8026071,
|
501
|
+
"lng" : 120.969539
|
502
|
+
},
|
503
|
+
"viewport" : {
|
504
|
+
"northeast" : {
|
505
|
+
"lat" : 24.8026702,
|
506
|
+
"lng" : 120.9696319
|
507
|
+
},
|
508
|
+
"southwest" : {
|
509
|
+
"lat" : 24.8024178,
|
510
|
+
"lng" : 120.9692603
|
511
|
+
}
|
512
|
+
}
|
513
|
+
},
|
514
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
515
|
+
"id" : "fc36645a4a97637a7dc74f7db082111b163dff1e",
|
516
|
+
"name" : "兔子兔子美式餐廳+",
|
517
|
+
"opening_hours" : {
|
518
|
+
"open_now" : true,
|
519
|
+
"weekday_text" : []
|
520
|
+
},
|
521
|
+
"photos" : [
|
522
|
+
{
|
523
|
+
"height" : 3024,
|
524
|
+
"html_attributions" : [
|
525
|
+
"\u003ca href=\"https://maps.google.com/maps/contrib/100370664550644133761/photos\"\u003e吳卡球\u003c/a\u003e"
|
526
|
+
],
|
527
|
+
"photo_reference" : "CoQBdwAAAGU1QQ0gaBKN_z0VeIij9Rxqs1QOX0U9R53nlWRk0aNoVvc2PKaX27Hduvz5QtGNcaRZcdDW24j6MJAefe-ek-w1cy82b1XMkddtCyqZ5H8UTX8OgLT1renyK0Y8kaY7jCCNtGsKaSzv-LUgSGngCVt9LeNyfHh0mNIUXfstVKYXEhAjLTi4A_6usVSj9ThjiCs5GhTKeUcEQheU1NdOjeyJimy-mnx-Yw",
|
528
|
+
"width" : 4032
|
529
|
+
}
|
530
|
+
],
|
531
|
+
"place_id" : "ChIJVX7hCOo1aDQRT04uUBAsADM",
|
532
|
+
"rating" : 3.6,
|
533
|
+
"reference" : "CmRRAAAAQ5O6zHIF2XZ0bkDqsNxnOWGZnCq5PxqU8N5OCEeszraxHk8Ue1DcekVeKbZx24cHMl14yfnUe29JFd0tU89DxASkvlfNEdmR6QDxRilhhnepa8QM7tRTqQC-1lbq-lXKEhBEobU-oi3gQTx5YYwylL0NGhS6dksncHqPZwYgUlwKlB3Uj6cAbQ",
|
534
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
535
|
+
},
|
536
|
+
{
|
537
|
+
"formatted_address" : "300, Taiwan, Hsinchu City, East District, Hsin Ann Road, 2-1號2樓",
|
538
|
+
"geometry" : {
|
539
|
+
"location" : {
|
540
|
+
"lat" : 24.7821364,
|
541
|
+
"lng" : 121.0059932
|
542
|
+
},
|
543
|
+
"viewport" : {
|
544
|
+
"northeast" : {
|
545
|
+
"lat" : 24.78245075,
|
546
|
+
"lng" : 121.00603785
|
547
|
+
},
|
548
|
+
"southwest" : {
|
549
|
+
"lat" : 24.78119335000001,
|
550
|
+
"lng" : 121.00585925
|
551
|
+
}
|
552
|
+
}
|
553
|
+
},
|
554
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
555
|
+
"id" : "b0c5addf4ff134c6ab3688a642faab4887401406",
|
556
|
+
"name" : "托斯卡尼尼義大利餐廳-竹科店",
|
557
|
+
"opening_hours" : {
|
558
|
+
"open_now" : true,
|
559
|
+
"weekday_text" : []
|
560
|
+
},
|
561
|
+
"photos" : [
|
562
|
+
{
|
563
|
+
"height" : 1469,
|
564
|
+
"html_attributions" : [
|
565
|
+
"\u003ca href=\"https://maps.google.com/maps/contrib/101586488685737233080/photos\"\u003e托斯卡尼尼義大利餐廳-竹科店\u003c/a\u003e"
|
566
|
+
],
|
567
|
+
"photo_reference" : "CoQBdwAAAHmi7P4etIu55J6J7_sqiBeXE1tmD2tNC0Oa-C8a3kkBUpxXjwjgIoRgFseT3YNTXOldmt8wrgQ_U2GRVVrJGUFbOFHUf5PNmBQaXakpIKqlyzJsb49daJpU5m5IqDpfyapg9BKKrx0QCBBN8xdiywim-SYKZakN-4p31L6PrT3wEhBa9-Xmcub5mvKFoimyaLooGhSe2t37Et6UZYVXLiV69OXjmzDPwg",
|
568
|
+
"width" : 2218
|
569
|
+
}
|
570
|
+
],
|
571
|
+
"place_id" : "ChIJP4dimRk2aDQRaBKom_y6_NM",
|
572
|
+
"rating" : 4.1,
|
573
|
+
"reference" : "CmRSAAAAm_2ADFz1_yoXAjtOTQ1QHkwrigl2oSvGUet-PXBQtEyhb7zeZTImCpZyZsGUxSAJ9T6rBHcXjaBUjSdUlBPvyP2Vtq5MQIH_sAzYqfaqffAn1_rbv9HWS8XYlAk50fTrEhANjQO-PPw_BSY1sFKoOcKsGhSP_WMEZn6t9FIB3lWuNyLJd1NC4w",
|
574
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
575
|
+
},
|
576
|
+
{
|
577
|
+
"formatted_address" : "No. 350號, Chaiqiao Rd, East District, Hsinchu City, Taiwan 300",
|
578
|
+
"geometry" : {
|
579
|
+
"location" : {
|
580
|
+
"lat" : 24.7607298,
|
581
|
+
"lng" : 120.9599842
|
582
|
+
},
|
583
|
+
"viewport" : {
|
584
|
+
"northeast" : {
|
585
|
+
"lat" : 24.7608008,
|
586
|
+
"lng" : 120.96009325
|
587
|
+
},
|
588
|
+
"southwest" : {
|
589
|
+
"lat" : 24.7605168,
|
590
|
+
"lng" : 120.95994785
|
591
|
+
}
|
592
|
+
}
|
593
|
+
},
|
594
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
595
|
+
"id" : "bee49d909113e05146084d18ab1c9cf761bc590b",
|
596
|
+
"name" : "草根廚房餐廳",
|
597
|
+
"opening_hours" : {
|
598
|
+
"open_now" : true,
|
599
|
+
"weekday_text" : []
|
600
|
+
},
|
601
|
+
"photos" : [
|
602
|
+
{
|
603
|
+
"height" : 2368,
|
604
|
+
"html_attributions" : [
|
605
|
+
"\u003ca href=\"https://maps.google.com/maps/contrib/111476009192528900367/photos\"\u003e韓森博一\u003c/a\u003e"
|
606
|
+
],
|
607
|
+
"photo_reference" : "CoQBdwAAAHh7AKL1htngRRWjNgnZ_F8HKGY66sOfDuU5O3Gyo1Azn8XdcGK5_YvtQlxMYdU8rt_tXSHMsXJ9Tg0_9mWYj8aK90lWwGFLvc6OHEQ51EA6ONNdL2G3inIX1ElfscjF2ATPdnTLmNItsBMgr4_s7vuVbkdKhFZVLBwzJOYsKSJbEhBOp45QBQgcSW5G0JYtT9uJGhSR8Uxj0m4gA56RgV0l6SUdrbh9Xw",
|
608
|
+
"width" : 4224
|
609
|
+
}
|
610
|
+
],
|
611
|
+
"place_id" : "ChIJN-i6v0FKaDQRFluoFj-vN-0",
|
612
|
+
"rating" : 4.1,
|
613
|
+
"reference" : "CmRSAAAAgrrqZaDqWinNCEkkn07SqtV8I4Cu1BSAA4Q5UYvfdebv9kUQrPv2cGPNlnweOKaXtmtToa09m6uQRTpHJPfORvdHF4RataTTj8X8X1Vtr6aTOJVxDGCsNBXWlxu-EzefEhCKZPf8D7nzzICAvqWQJQsBGhS6JDigrN6ZiGeAChKkV49mKqQS7g",
|
614
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
615
|
+
},
|
616
|
+
{
|
617
|
+
"formatted_address" : "No. 38, Jincheng 2nd Rd, East District, Hsinchu City, Taiwan 300",
|
618
|
+
"geometry" : {
|
619
|
+
"location" : {
|
620
|
+
"lat" : 24.7960168,
|
621
|
+
"lng" : 121.0022835
|
622
|
+
},
|
623
|
+
"viewport" : {
|
624
|
+
"northeast" : {
|
625
|
+
"lat" : 24.79608785,
|
626
|
+
"lng" : 121.00235045
|
627
|
+
},
|
628
|
+
"southwest" : {
|
629
|
+
"lat" : 24.79580365,
|
630
|
+
"lng" : 121.00222825
|
631
|
+
}
|
632
|
+
}
|
633
|
+
},
|
634
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
635
|
+
"id" : "d2637a7ea744d13b8d301f6e4652824f11a34129",
|
636
|
+
"name" : "芙歐義式餐廳(FULLPASTA)",
|
637
|
+
"opening_hours" : {
|
638
|
+
"open_now" : true,
|
639
|
+
"weekday_text" : []
|
640
|
+
},
|
641
|
+
"photos" : [
|
642
|
+
{
|
643
|
+
"height" : 3024,
|
644
|
+
"html_attributions" : [
|
645
|
+
"\u003ca href=\"https://maps.google.com/maps/contrib/100343311262300667968/photos\"\u003eYu-Wei Chang\u003c/a\u003e"
|
646
|
+
],
|
647
|
+
"photo_reference" : "CoQBdwAAABJGreBGVT8aVDIsCK7oz3qASiGjiArBPc5AMfw5R0F1G5EblJPE6eYvxpv6XllOAuqgXYZuaP4k7pD-gHjVfOk5XZnAcmierOAhHOQa08MlijOWRBhAt7tVqMHbd6HIeAlcIbcb7jfaYQ-j0AVaq_55NJzVpE2OhEuFPItjlQqnEhCvi6EOsCXb6IQVq4P7xH1ZGhQ14p-QYiVEgGgMRooX9ph34WtxkA",
|
648
|
+
"width" : 4032
|
649
|
+
}
|
650
|
+
],
|
651
|
+
"place_id" : "ChIJPQcl12w2aDQRfuPFFmkGhxU",
|
652
|
+
"rating" : 4.2,
|
653
|
+
"reference" : "CmRRAAAA9Ik-f-Bm8GDdyGybu1OuNGky8fJ4hyy1q_AIDW-e8PuvYfjzOOLxZ1aDT_iTtPNDaz1IuQMYSvLidaOnXUTK0vHnY6qMYeEEoGUjj-UsxaZcqY6btYmxI4wDHGWQySpSEhDk96asRFjix73_UMbQNqqMGhQ0BNVu9XDcCZy_cEUk89SQqnV3nw",
|
654
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
655
|
+
},
|
656
|
+
{
|
657
|
+
"formatted_address" : "No. 1, Lane 1386, Section 2, Yanping Rd, Xiangshan District, Hsinchu City, Taiwan 300",
|
658
|
+
"geometry" : {
|
659
|
+
"location" : {
|
660
|
+
"lat" : 24.8194268,
|
661
|
+
"lng" : 120.9290759
|
662
|
+
},
|
663
|
+
"viewport" : {
|
664
|
+
"northeast" : {
|
665
|
+
"lat" : 24.81946865,
|
666
|
+
"lng" : 120.92915255
|
667
|
+
},
|
668
|
+
"southwest" : {
|
669
|
+
"lat" : 24.81941285,
|
670
|
+
"lng" : 120.92884595
|
671
|
+
}
|
672
|
+
}
|
673
|
+
},
|
674
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
675
|
+
"id" : "9e8e1a932e9e3ebed12c655ba4e8d7584ae3a55b",
|
676
|
+
"name" : "新聖地休閒庭園海鮮",
|
677
|
+
"opening_hours" : {
|
678
|
+
"open_now" : true,
|
679
|
+
"weekday_text" : []
|
680
|
+
},
|
681
|
+
"photos" : [
|
682
|
+
{
|
683
|
+
"height" : 2988,
|
684
|
+
"html_attributions" : [
|
685
|
+
"\u003ca href=\"https://maps.google.com/maps/contrib/103826411120045129545/photos\"\u003ejay fu\u003c/a\u003e"
|
686
|
+
],
|
687
|
+
"photo_reference" : "CoQBdwAAAP4KqE5KsU8MTdCG5vyvk_laJrv8RypJwK45Dnct1-DGbVd_jLvmNjqIkpFrV0D42pRU0bK2XhTfcGut-pQF7bjzVPOjT_KIRmkfqyiCPZy5BClRhRYhc4SlDg1lmBoogcP-WrMatKJQobXrdQhQwjhkQz9QpXj_c8Au7CGHS5_zEhB2lfb44G2gScDKIOIWVXjeGhSJUbNZ6DPVYrwBdFrf8mIsVnXA8g",
|
688
|
+
"width" : 5312
|
689
|
+
}
|
690
|
+
],
|
691
|
+
"place_id" : "ChIJbbtCTBA1aDQR6TvXuQOMgXM",
|
692
|
+
"rating" : 4.1,
|
693
|
+
"reference" : "CmRRAAAAUyzKcRFkl2B5O3izaAnDAW0iLIFoCy5Dax3JfpcxqvDFTEGx8jPkWrkAo41-Vg4Xr1APW9dMvc6FpHG15aokeLs_6CdmaGZqi0wFafnB1vt1Agu48zfr-GLLHOI2CfgaEhC9_g8gfSOP6x1z4zeOqIE7GhTOqyTimcKOWGwUUZ-RF070p4rt-Q",
|
694
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
695
|
+
},
|
696
|
+
{
|
697
|
+
"formatted_address" : "300, Taiwan, Hsinchu City, East District, Wenchang St, 36號2樓",
|
698
|
+
"geometry" : {
|
699
|
+
"location" : {
|
700
|
+
"lat" : 24.8033699,
|
701
|
+
"lng" : 120.9687897
|
702
|
+
},
|
703
|
+
"viewport" : {
|
704
|
+
"northeast" : {
|
705
|
+
"lat" : 24.80340515,
|
706
|
+
"lng" : 120.96886935
|
707
|
+
},
|
708
|
+
"southwest" : {
|
709
|
+
"lat" : 24.80326415,
|
710
|
+
"lng" : 120.96876315
|
711
|
+
}
|
712
|
+
}
|
713
|
+
},
|
714
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
715
|
+
"id" : "0d74c849555bc346bcd959df61e62d5c26f8f1e5",
|
716
|
+
"name" : "奇兵西餐廳",
|
717
|
+
"opening_hours" : {
|
718
|
+
"open_now" : true,
|
719
|
+
"weekday_text" : []
|
720
|
+
},
|
721
|
+
"photos" : [
|
722
|
+
{
|
723
|
+
"height" : 2988,
|
724
|
+
"html_attributions" : [
|
725
|
+
"\u003ca href=\"https://maps.google.com/maps/contrib/110713162435538315207/photos\"\u003e林金龍\u003c/a\u003e"
|
726
|
+
],
|
727
|
+
"photo_reference" : "CoQBdwAAAKir3nhtZQEqCwqmiWSlgVxirA8vYXZQY6I--4SPCnP1f80X4P32wz-7adsBh9EJBBlHdcdIaGs4A0xwk13KXesj8Y0zw-kRSbGOHXqS8kyElqgy2zWn9M06pT3WfNMBxAnx_Jl_J_omeZXq3iNnUcUnWU6QWKIYcPGZbcFzS_1EEhDW0DjHZdOKOZ6FpAtp4uxgGhQNf3kiA3epRCU9fU6NT12fwppW5Q",
|
728
|
+
"width" : 5312
|
729
|
+
}
|
730
|
+
],
|
731
|
+
"place_id" : "ChIJC4Ir3ME1aDQRGliTwPIzOdg",
|
732
|
+
"rating" : 3.6,
|
733
|
+
"reference" : "CmRSAAAACILzqXnsdEUqyk-KIByuc6042Us5TRXX313y6PYTqku7PnJA89Hm8u0iJWhpgeEMrmXBWLzi3gaIMnZDGpYFUZTWtC1fQPYhpvkQhx9loCTT4UV2zMByKRKjOw4XmFQZEhDdmZaykaYikNqyelV3cYDuGhR-mbonz5gET67gtN8_tCURrg3qXQ",
|
734
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
735
|
+
},
|
736
|
+
{
|
737
|
+
"formatted_address" : "No. 773號, Minghu Rd, East District, Hsinchu City, Taiwan 300",
|
738
|
+
"geometry" : {
|
739
|
+
"location" : {
|
740
|
+
"lat" : 24.775333,
|
741
|
+
"lng" : 120.9676459
|
742
|
+
},
|
743
|
+
"viewport" : {
|
744
|
+
"northeast" : {
|
745
|
+
"lat" : 24.77536105,
|
746
|
+
"lng" : 120.9678637
|
747
|
+
},
|
748
|
+
"southwest" : {
|
749
|
+
"lat" : 24.77532365,
|
750
|
+
"lng" : 120.9669925
|
751
|
+
}
|
752
|
+
}
|
753
|
+
},
|
754
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
755
|
+
"id" : "5b256fea6b4ab3b7732f7c04bef66117afa2ecf9",
|
756
|
+
"name" : "(煙波大飯店)莫內西餐廳",
|
757
|
+
"opening_hours" : {
|
758
|
+
"open_now" : true,
|
759
|
+
"weekday_text" : []
|
760
|
+
},
|
761
|
+
"photos" : [
|
762
|
+
{
|
763
|
+
"height" : 1108,
|
764
|
+
"html_attributions" : [
|
765
|
+
"\u003ca href=\"https://maps.google.com/maps/contrib/113099334153141037837/photos\"\u003e曜容國際\u003c/a\u003e"
|
766
|
+
],
|
767
|
+
"photo_reference" : "CoQBdwAAALlT3UboBkWSRB02Tme5ZDX9HqetvUSjLcMxEtWb77_eRwG8xH0qD8yOpczDRS6zg9enNDd2w4HqjrGbYl7Xm-n3jdIxrBGtcj3GPzwel7OtESyesmXDPpllv9CCRhmzSrr9USMF5K0imbTp59SXwgXVvNubCilF4Cc-07Yz5PBsEhB8P1LKa3Rx7Ac4ztu3vv4kGhTGZOcN26OVwbTt3FZWjto2nI820A",
|
768
|
+
"width" : 1477
|
769
|
+
}
|
770
|
+
],
|
771
|
+
"place_id" : "ChIJBVJtYAxKaDQRB57s0O-WY28",
|
772
|
+
"rating" : 4,
|
773
|
+
"reference" : "CmRRAAAACTzlQ2UCO-0thGo0HuFHnv0E0Pzj1ao1QV9qneEPU5rhxZ8KcoVmzl_Z6Afop41M4m1sW6cZHIVy7S5_fNN6-resHlkMNTYl4FOwvo_ZNX7y_9fEmjf8QyOm0KSZETNPEhAXBl0aye0L5bZXFtOqwveOGhRg3lzAV7-UJnU0-mz_08Xv4nJVhw",
|
774
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
775
|
+
},
|
776
|
+
{
|
777
|
+
"formatted_address" : "No. 138, Gongyuan Rd, East District, Hsinchu City, Taiwan 300",
|
778
|
+
"geometry" : {
|
779
|
+
"location" : {
|
780
|
+
"lat" : 24.805524,
|
781
|
+
"lng" : 120.982918
|
782
|
+
},
|
783
|
+
"viewport" : {
|
784
|
+
"northeast" : {
|
785
|
+
"lat" : 24.80560015,
|
786
|
+
"lng" : 120.98309725
|
787
|
+
},
|
788
|
+
"southwest" : {
|
789
|
+
"lat" : 24.80529555,
|
790
|
+
"lng" : 120.98285825
|
791
|
+
}
|
792
|
+
}
|
793
|
+
},
|
794
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
795
|
+
"id" : "51afb80174139f697713f869883ab05c18f529bf",
|
796
|
+
"name" : "Elsa 艾莎異國美食餐廳",
|
797
|
+
"opening_hours" : {
|
798
|
+
"open_now" : true,
|
799
|
+
"weekday_text" : []
|
800
|
+
},
|
801
|
+
"photos" : [
|
802
|
+
{
|
803
|
+
"height" : 1836,
|
804
|
+
"html_attributions" : [
|
805
|
+
"\u003ca href=\"https://maps.google.com/maps/contrib/101354497381930575662/photos\"\u003e五花香\u003c/a\u003e"
|
806
|
+
],
|
807
|
+
"photo_reference" : "CoQBdwAAAIAjNyj6jlOMqyJbSYoZ1EaM8TkCfJ15MUyzMlfXYYBcBVmplVVlG1Uph49Vw7lSNOH94SLg_34een4PLEGj9HPjTD-eShu_AF3FoE_PDO6O1iziay_ICwnAwTGEQ8mxd-Jo8JQHR3Ha97_GwfbWcjXC8fUDKeWJHI2qW_AAN-NrEhCC5joffi4HO_gSfK0UhrEPGhQghRmmkGYTQ6aQZGiFimsakCaPZg",
|
808
|
+
"width" : 3264
|
809
|
+
}
|
810
|
+
],
|
811
|
+
"place_id" : "ChIJvYfHTtk1aDQR1Vamfv-G77o",
|
812
|
+
"rating" : 4,
|
813
|
+
"reference" : "CmRSAAAAc49ZV0r6GGBOx6QoQivKBWa7ZtTPkQhMmgqschXEyJNO3JP1dcj6Eu74AzML0s3O5TfBwIQ7xYysEvQeE4i-aSY0IwhP7eY31HSTQHMut6hMCFVRIDudpe8d1kljJ599EhAFuSyv2UnStPeCE5PeH_9lGhQXezgEDeNBzghz9iahPMVE5qfAaw",
|
814
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
815
|
+
},
|
816
|
+
{
|
817
|
+
"formatted_address" : "No. 5號, Dongsheng Rd, East District, Hsinchu City, Taiwan 300",
|
818
|
+
"geometry" : {
|
819
|
+
"location" : {
|
820
|
+
"lat" : 24.8032595,
|
821
|
+
"lng" : 120.9891058
|
822
|
+
},
|
823
|
+
"viewport" : {
|
824
|
+
"northeast" : {
|
825
|
+
"lat" : 24.8038748,
|
826
|
+
"lng" : 120.9897384
|
827
|
+
},
|
828
|
+
"southwest" : {
|
829
|
+
"lat" : 24.8030544,
|
830
|
+
"lng" : 120.987208
|
831
|
+
}
|
832
|
+
}
|
833
|
+
},
|
834
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
835
|
+
"id" : "bed03c7e2a7e1f20e35df3fa24a13c602fe20da1",
|
836
|
+
"name" : "Elvis Diner貓王餐廳",
|
837
|
+
"opening_hours" : {
|
838
|
+
"open_now" : true,
|
839
|
+
"weekday_text" : []
|
840
|
+
},
|
841
|
+
"photos" : [
|
842
|
+
{
|
843
|
+
"height" : 3024,
|
844
|
+
"html_attributions" : [
|
845
|
+
"\u003ca href=\"https://maps.google.com/maps/contrib/100370664550644133761/photos\"\u003e吳卡球\u003c/a\u003e"
|
846
|
+
],
|
847
|
+
"photo_reference" : "CoQBdwAAAA5iTaq2x1m0AmbNRgmMSNFce-EA0yxEZ1BeZaYAkTHH5vReDJsLafA_z2iV156h0bEa5XrANyfvC304Sz0ZrvDVTrqTqbuj2Y0boFMMgXYS1KJigLpX7_jb64N1qc3GoHLOQterCR2s5jiSlEXyUR6D0-nT1n-VgDqS2Rm0LQOQEhAgzDwMguu_Sm9AvaIQnVcIGhSteevaTOyU8ZVjCwqxJkwglGTQ3g",
|
848
|
+
"width" : 4032
|
849
|
+
}
|
850
|
+
],
|
851
|
+
"place_id" : "ChIJkQ7V_nU2aDQRSf1iuFiTomo",
|
852
|
+
"rating" : 4.2,
|
853
|
+
"reference" : "CmRRAAAAcIWlBTVo64vTap0_JCSu_1TG9pwjRPDFuxxQ_ozhxcP9A7MKtjuR22GCMY2RqGvQcZOR3P8JWlMPziT8JV-RafHiq3egUaerXVLESRFZlk9XI7cl_lotzeeNEuM-wJDnEhAOLCkKy6WZ-DHSZFc0pKNoGhQAPgsvWMWqoQAgulXLiFWrq58ipw",
|
854
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
855
|
+
},
|
856
|
+
{
|
857
|
+
"formatted_address" : "300, Taiwan, Hsinchu City, Xiangshan District, 景觀大道201號",
|
858
|
+
"geometry" : {
|
859
|
+
"location" : {
|
860
|
+
"lat" : 24.7869574,
|
861
|
+
"lng" : 120.9497926
|
862
|
+
}
|
863
|
+
},
|
864
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
865
|
+
"id" : "25e67373f22870e17b49bf12336e8c5e60d886de",
|
866
|
+
"name" : "綠芳園庭園餐廳",
|
867
|
+
"opening_hours" : {
|
868
|
+
"open_now" : true,
|
869
|
+
"weekday_text" : []
|
870
|
+
},
|
871
|
+
"photos" : [
|
872
|
+
{
|
873
|
+
"height" : 418,
|
874
|
+
"html_attributions" : [
|
875
|
+
"\u003ca href=\"https://maps.google.com/maps/contrib/116541516598897865526/photos\"\u003e綠芳園庭園餐廳\u003c/a\u003e"
|
876
|
+
],
|
877
|
+
"photo_reference" : "CoQBdwAAACZjcL1JzRb9EoCm_XHDXWLUC_DF_uyuOwLzzJf8Ck9aVi3DHQhCAnN9lN4XYovsCM2VHJFwwms812AwFB_I-wpNSH-htcAZDD11Y-NNUhW4ococs6mtSpJWIo758rjTxR6O_dd7uJv707NyWkpvtoXIehCNFmJg9qzdViFqVSJeEhDbWFbScnH5Ip7f0jCeVcQVGhQ7brUxhwgjxJAFDyXjt7e6HPockw",
|
878
|
+
"width" : 417
|
879
|
+
}
|
880
|
+
],
|
881
|
+
"place_id" : "ChIJbyzphWVKaDQRlwEmoe3PTZk",
|
882
|
+
"rating" : 3,
|
883
|
+
"reference" : "CmRSAAAA1hvwszt2SN0eUuoE6GsKZEojU5h7jaXfCOHU-y8sgykRDXADWJ3uwsHt1rAWH5bDoZhXESf1Nxn55hiiqznPcwfpLvistAXRwJ5tY5R-pxl8PWTVuI90CO5YhyCM0sHnEhAHXEXcvKzKCPC5EohUrvlyGhSzEtUJYKVB1yQNebSr5Wn1n3CiAA",
|
884
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
885
|
+
},
|
886
|
+
{
|
887
|
+
"formatted_address" : "No. 136號, Section 1, Dongda Rd, East District, Hsinchu City, Taiwan 300",
|
888
|
+
"geometry" : {
|
889
|
+
"location" : {
|
890
|
+
"lat" : 24.8085488,
|
891
|
+
"lng" : 120.9721169
|
892
|
+
},
|
893
|
+
"viewport" : {
|
894
|
+
"northeast" : {
|
895
|
+
"lat" : 24.8085887,
|
896
|
+
"lng" : 120.97217805
|
897
|
+
},
|
898
|
+
"southwest" : {
|
899
|
+
"lat" : 24.8084291,
|
900
|
+
"lng" : 120.97193345
|
901
|
+
}
|
902
|
+
}
|
903
|
+
},
|
904
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
905
|
+
"id" : "0f155c516f09ebf701344d7c3450f921cffc5bdf",
|
906
|
+
"name" : "菜園上海餐廳",
|
907
|
+
"opening_hours" : {
|
908
|
+
"open_now" : true,
|
909
|
+
"weekday_text" : []
|
910
|
+
},
|
911
|
+
"photos" : [
|
912
|
+
{
|
913
|
+
"height" : 2368,
|
914
|
+
"html_attributions" : [
|
915
|
+
"\u003ca href=\"https://maps.google.com/maps/contrib/112890789546832042725/photos\"\u003e劉淦响\u003c/a\u003e"
|
916
|
+
],
|
917
|
+
"photo_reference" : "CoQBdwAAAJoUMJCmAiksISjy_IY6HjeDCTCqQNEvhQB3Dp8ur0Tusxxbnqen22rGmYrR0SARjumaCL2IUrX4F-5vExM_vP7OfSYkmS-B-RGLTGUUPv32ovpJyRjm8mQBk2ju61XW_zTFrRThE-wTuxpSaZVBZunnLeui0ZEQlNeqn5lHCeqOEhCQ6MCR9ILOg37RvV94uBhxGhR7LIae-Bq1xcZQYa-nOJWMqEBjsw",
|
918
|
+
"width" : 4160
|
919
|
+
}
|
920
|
+
],
|
921
|
+
"place_id" : "ChIJRU8ga8Q1aDQRtHRng5DN6V4",
|
922
|
+
"rating" : 4.1,
|
923
|
+
"reference" : "CmRRAAAA0P7EDdiLh23RQLCzAviz-AhwW-6NQDkD8OxnjqYsNuaLNalRV-bLWMsTap6AbhcjPB-xDB5AxGVSBAfXf4-o7rUyQrH_d2YWlktniuHy35F_D17hCmCR4zHDKdtDxqL6EhABQbm0BnM02Koz-MXqDqT7GhTiTqUCijXcNX37-QrAhCD_rIhHXw",
|
924
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
925
|
+
},
|
926
|
+
{
|
927
|
+
"formatted_address" : "No. 41, Minzu Rd, East District, Hsinchu City, Taiwan 300",
|
928
|
+
"geometry" : {
|
929
|
+
"location" : {
|
930
|
+
"lat" : 24.806178,
|
931
|
+
"lng" : 120.974302
|
932
|
+
},
|
933
|
+
"viewport" : {
|
934
|
+
"northeast" : {
|
935
|
+
"lat" : 24.8062229,
|
936
|
+
"lng" : 120.97435285
|
937
|
+
},
|
938
|
+
"southwest" : {
|
939
|
+
"lat" : 24.8060433,
|
940
|
+
"lng" : 120.97427305
|
941
|
+
}
|
942
|
+
}
|
943
|
+
},
|
944
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
945
|
+
"id" : "32d565ca5abd5935b0bcbcddc3231d38b560c29b",
|
946
|
+
"name" : "斑馬騷莎美義餐廳民族店",
|
947
|
+
"opening_hours" : {
|
948
|
+
"open_now" : true,
|
949
|
+
"weekday_text" : []
|
950
|
+
},
|
951
|
+
"photos" : [
|
952
|
+
{
|
953
|
+
"height" : 1365,
|
954
|
+
"html_attributions" : [
|
955
|
+
"\u003ca href=\"https://maps.google.com/maps/contrib/109179496180255308926/photos\"\u003e斑馬騷莎美義餐廳民族店\u003c/a\u003e"
|
956
|
+
],
|
957
|
+
"photo_reference" : "CoQBdwAAAIx1Sd0gNC1HIJIrwATk0K3Fgy7PLB5WN3qu_Fjz7ZbOdsOQAZZyeeWiGjeOO9X3UKHDKnJSlqdToH9mTSz2iGUwYcKAkp2PlnUKUm05g2HyNjWhQhbb7phG08Y6mrVDIDhxkj2wKc3ZSrSGJrQgu_4lZjEDFZXXy9tJuOJOluIpEhC1cqUEpiKMjSABeQkpGkOAGhQvXflGOLLEGtEPtdz5lBGUGsSr1Q",
|
958
|
+
"width" : 1370
|
959
|
+
}
|
960
|
+
],
|
961
|
+
"place_id" : "ChIJYcP_bsM1aDQRE3Untz2T0zM",
|
962
|
+
"rating" : 4.3,
|
963
|
+
"reference" : "CmRRAAAALLA21zORQo2iZtL6ajQeZfQo7heKcjvX5EcZUR7tN9So8ntgAJv9tTm2J1m5bCdHEw9KHcxEJ5pk_z4l5M8ZdUc9edkQQKODMr3ecKnm8ZEUIQBJQHCGg0YXsJPFIkzAEhDCq3fS5Lc7WGQK4HVraJQhGhT7XGqyrpJnoMPkn43WcNLvkd3QEw",
|
964
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
965
|
+
},
|
966
|
+
{
|
967
|
+
"formatted_address" : "No. 715, Section 2, Yanping Rd, Xiangshan District, Hsinchu City, Taiwan 300",
|
968
|
+
"geometry" : {
|
969
|
+
"location" : {
|
970
|
+
"lat" : 24.805893,
|
971
|
+
"lng" : 120.9219155
|
972
|
+
},
|
973
|
+
"viewport" : {
|
974
|
+
"northeast" : {
|
975
|
+
"lat" : 24.80595994999999,
|
976
|
+
"lng" : 120.92198805
|
977
|
+
},
|
978
|
+
"southwest" : {
|
979
|
+
"lat" : 24.80587015,
|
980
|
+
"lng" : 120.92189065
|
981
|
+
}
|
982
|
+
}
|
983
|
+
},
|
984
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
985
|
+
"id" : "b2376fe2d6375dedb7c8d801d029f0a1b64b1452",
|
986
|
+
"name" : "佳美海鮮餐廳",
|
987
|
+
"photos" : [
|
988
|
+
{
|
989
|
+
"height" : 3000,
|
990
|
+
"html_attributions" : [
|
991
|
+
"\u003ca href=\"https://maps.google.com/maps/contrib/100739945767447622771/photos\"\u003e曾世揚\u003c/a\u003e"
|
992
|
+
],
|
993
|
+
"photo_reference" : "CoQBdwAAAOJlEKi9bLqEP47mBdv5S9_U3sCs8bd0rTokMKSAjXjI1mzjtnDYS99YtOGmwdHxG29cKxK9Ygd3fZkFYicbEXQvjPLCRD0wAlNqEtMjaR8bhGpJgkirHGArX8W_NrsCSSgshl7QKm4M3gI8ajBnLMO1v-O_ebk7o0u09Kpd-tLXEhAAAPiDjMqFqiAHXkPR_vw7GhT6oDYqwXPTHK3dWDciN93W0GwGSg",
|
994
|
+
"width" : 4000
|
995
|
+
}
|
996
|
+
],
|
997
|
+
"place_id" : "ChIJQ3gmAGk1aDQRkW3k6Wvu-a0",
|
998
|
+
"rating" : 4.2,
|
999
|
+
"reference" : "CmRSAAAAypuNcBbllu5OwvATYH9kzxYeeJIwz2RsOq7qyEqlfVEV_r6fsUgbEOBMH6BfRu-GB124KSpQSKMl0wGfiPMR2r1xWEEsCuW3-F4SHPDIeDzGm9mCFF83tkpCBRmIpe9UEhAujyaMlkskJDc7Kz_FyjspGhQf0tVtfHNuYT2kSswQuWp_byW2LQ",
|
1000
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
1001
|
+
},
|
1002
|
+
{
|
1003
|
+
"formatted_address" : "No. 307, Guangming 1st Rd, Zhubei City, Hsinchu County, Taiwan 30256",
|
1004
|
+
"geometry" : {
|
1005
|
+
"location" : {
|
1006
|
+
"lat" : 24.8321943,
|
1007
|
+
"lng" : 121.0090332
|
1008
|
+
},
|
1009
|
+
"viewport" : {
|
1010
|
+
"northeast" : {
|
1011
|
+
"lat" : 24.8323377,
|
1012
|
+
"lng" : 121.00910055
|
1013
|
+
},
|
1014
|
+
"southwest" : {
|
1015
|
+
"lat" : 24.8321465,
|
1016
|
+
"lng" : 121.00901075
|
1017
|
+
}
|
1018
|
+
}
|
1019
|
+
},
|
1020
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
1021
|
+
"id" : "1395da06692b976493bb1801d7cf827fd462a12c",
|
1022
|
+
"name" : "哄供茶餐廳",
|
1023
|
+
"opening_hours" : {
|
1024
|
+
"open_now" : true,
|
1025
|
+
"weekday_text" : []
|
1026
|
+
},
|
1027
|
+
"photos" : [
|
1028
|
+
{
|
1029
|
+
"height" : 1536,
|
1030
|
+
"html_attributions" : [
|
1031
|
+
"\u003ca href=\"https://maps.google.com/maps/contrib/114591153607824982278/photos\"\u003echi yu _\u003c/a\u003e"
|
1032
|
+
],
|
1033
|
+
"photo_reference" : "CoQBdwAAAND8_IOIJ1232PAjGlhlIoBIcL4SfKZaEaS-TsosUaPVqehOCW2zt5H1hpwMvwd6DPagHuwR52AQi9TQn9DVYNgVLmXrdF900ExzpEWJMhHdXWZlneUaPiiC1eqTvNZIihWBvmT3mU_EqR3kQu85Rl__3Umk-5FboY1F1iWcWQueEhCWWPoBAlZC44zUE2Q_YMYfGhRFs7F55vXRBHIslpA9HtFGToSn1A",
|
1034
|
+
"width" : 2048
|
1035
|
+
}
|
1036
|
+
],
|
1037
|
+
"place_id" : "ChIJnem-lZQ2aDQRYOumjnafVrw",
|
1038
|
+
"rating" : 3,
|
1039
|
+
"reference" : "CmRSAAAAydHZAcuaRzRyEvcp1RifEfzyqzF9jruyxcCKcD3ic6WgkCfdjNc9mtqwZ71gcmWQo1do3L3RCUv4Z_5VrlrTc1V0twn09xVR00YXkuGRGpBpQ6_r5wm1lOxLZpAZd4VEEhBhwSbN61vEGymd-vKqaTSFGhRx-fiIK3vYEne3a_EtA8jT34CxXw",
|
1040
|
+
"types" : [ "restaurant", "food", "point_of_interest", "establishment" ]
|
1041
|
+
},
|
1042
|
+
{
|
1043
|
+
"formatted_address" : "No. 208, Minquan Rd, East District, Hsinchu City, Taiwan 300",
|
1044
|
+
"geometry" : {
|
1045
|
+
"location" : {
|
1046
|
+
"lat" : 24.8104925,
|
1047
|
+
"lng" : 120.9732995
|
1048
|
+
},
|
1049
|
+
"viewport" : {
|
1050
|
+
"northeast" : {
|
1051
|
+
"lat" : 24.81051345000001,
|
1052
|
+
"lng" : 120.97333205
|
1053
|
+
},
|
1054
|
+
"southwest" : {
|
1055
|
+
"lat" : 24.81042965,
|
1056
|
+
"lng" : 120.97320185
|
1057
|
+
}
|
1058
|
+
}
|
1059
|
+
},
|
1060
|
+
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
|
1061
|
+
"id" : "55e8032e58108638031d0797acb53aeb38d0c3af",
|
1062
|
+
"name" : "EISEN bistro 艾昇餐酒館",
|
1063
|
+
"opening_hours" : {
|
1064
|
+
"open_now" : true,
|
1065
|
+
"weekday_text" : []
|
1066
|
+
},
|
1067
|
+
"photos" : [
|
1068
|
+
{
|
1069
|
+
"height" : 1017,
|
1070
|
+
"html_attributions" : [
|
1071
|
+
"\u003ca href=\"https://maps.google.com/maps/contrib/103996344439267930860/photos\"\u003eAki Miranda\u003c/a\u003e"
|
1072
|
+
],
|
1073
|
+
"photo_reference" : "CoQBdwAAAN3TT_ri5onRNNFMHgdubbZExrJDNPmu7tcIatLTomuJw90_A0zUxqKIjyUq0H8Xg0LLggf4vdaZp55f2nIg5wqMA-wKVLh4V4ZfD-T20B55PyhL262c1z0TVhZQenzewj-k9XU8MkjFNRezR9pAieFkZXtQ3K1ts2oqqGMeTHD7EhCXOpyNAShrc0RZjyg4gSbCGhRzJwK9dfxyoEn3KeULCDI2wkm02A",
|
1074
|
+
"width" : 2448
|
1075
|
+
}
|
1076
|
+
],
|
1077
|
+
"place_id" : "ChIJCcRRB8U1aDQR-m7NrAqo8JA",
|
1078
|
+
"rating" : 4.1,
|
1079
|
+
"reference" : "CmRSAAAAjIov6KXwEgqY-u5msgQNutI9UdIjkQiGu2h-OOEuF7xUe3mIOc7cgS4c4eJxkY5cLOBEWMl1R5wp-iVkzl7gv1aOKwYhqlQ9tMHx_jkjeMjuNv9PtWlte9cqP22qXjWyEhAP2bjHikh3f-Ma20r_vghrGhR3lKkPVc4WX0lzM1kuT_8_vHBIOg",
|
1080
|
+
"types" : [ "restaurant", "bar", "food", "point_of_interest", "establishment" ]
|
1081
|
+
}
|
1082
|
+
],
|
1083
|
+
"status" : "OK"
|
1084
|
+
}
|
1085
|
+
http_version:
|
1086
|
+
recorded_at: Sun, 18 Dec 2016 09:46:10 GMT
|
1087
|
+
recorded_with: VCR 3.0.3
|