我正在使用Meteor.js。我需要放置谷歌地方的照片。我在这里使用Javascript。所以这就是我所做的。
Meteor.call('getPlaceDetails', result.place_id, function (error, placeDetailsResult) {
if (error) {
console.log(error);
} else {
console.log(placeDetailsResult.data.result.photos[0].photo_reference);
Meteor.call('getPlacePhotos', placeDetailsResult.data.result.photos[0].photo_reference, function (error, photoresult) {
if (error) {
console.log(error);
} else {
console.log(photoresult);
}
});
}
});
我从Place Details API调用成功获得了place_id。使用place_id,我可以再次成功调用Place Photos API。我觉得这里一切顺利。作为回应,我应该得到照片,这是我回复的JSON对象:
Object {statusCode: 200, content: "����JFIF��*ExifII*1…!�o~Ç����`��&]<sP�\U��TV-���@#�{��8�#7��*�"���", headers: Object, data: null}
content
:
"����JFIF��*ExifII*1Google���↵ ↵↵↵↵↵
data
:
null
headers
:
Object
access-control-allow-origin
:
"*"
access-control-expose-headers
:
"Content-Length"
alt-svc
:
"quic=":443"; ma=2592000; v="36,35,34,33,32,31,30""
alternate-protocol
:
"443:quic"
cache-control
:
"public, max-age=86400, no-transform"
connection
:
"close"
content-disposition
:
"inline;filename="2015-11-13.jpg""
content-length
:
"38587"
content-type
:
"image/jpeg"
date
:
"Thu, 01 Sep 2016 12:12:47 GMT"
etag
:
""v21fad""
expires
:
"Fri, 02 Sep 2016 12:12:47 GMT"
server
:
"fife"
vary
:
"Origin"
x-content-type-options
:
"nosniff"
x-xss-protection
:
"1; mode=block"
__proto__
:
Object
statusCode
:
200
__proto__
:
Object
在这里的文档中:https://developers.google.com/places/web-service/photos他们说你得到一张照片作为回报。所以一切都很好,但我不知道如何在我的网站上显示这张照片,因为没有网址。请提供一些有用的信息。
谢谢:)
答案 0 :(得分:0)
我确实错过了 Sorin Lascu 所评论的功能。如果有人在Meteor.js中这样做,我将提供一个完整而简单的答案。我创建了一个包含Google Maps API自动填充功能的输入字段,并立即在地图上显示该地点。您还可以获得显示照片和其他详细信息所需的所有必要数据。
我将此包 jeremy:geocomplete 添加到我的项目中。
我用HTML创建了一个地图:
<div class="col s12 m10 l10 push-m1 push-l1" id="google_mapPlace">
{{> googleMap name="mapPlace" options=mapOptions}}
</div>
我在HTML中添加了一个输入字段
<input value="" type="text" class="findPlace">
然后在我的js文件中,我用autorun更新我的函数。
Template.adminCollections.onRendered(function() {
this.autorun(function () {
if (GoogleMaps.loaded()) {
$(".findPlace").geocomplete({
map: "#google_mapPlace",
nearbySearchKeys: ['photos', 'place_id', 'name', 'geometry']
}).bind("geocode:result", function(event, result){
$('.myimg').attr('src', result.photos[0].getUrl({'maxWidth': 500, 'maxHeight': 500}));
});
});
});
});