我正在开发一个应用程序,它使用Google Maps/Places API中的搜索框功能来查找当地城市或地址附近的食品银行。
客户端在测试中看起来很好,但在后台,我在控制台中不断收到以下错误消息:“*InvalidValueError:setIcon:不是字符串;而不是PinView的示例;并且没有URL属性;并且没有路径属性 *"。它似乎不会影响输入/返回的搜索,并返回符合搜索查询的所有内容。我不知道需要做什么来消 debugging 误。有什么建议吗?非常感谢!
下面是我的JS代码:
function initAutocomplete() {
let map = new google.maps.Map(document.getElementById('map'), {
center: {lat: 32.714286, lng: -117.155577},
scrollwheel: false,
zoom: 12,
maptypeId: 'roadmap'
});
let input = document.getElementById('pac-input');
let searchBox = new google.maps.places.SearchBox(input);
map.controls[google.maps.ControlPosition.TOP_LEFT].push(input);
map.addListener('bounds_changed', function() {
searchBox.setBounds(map.getBounds());
});
let markers = [];
searchBox.addListener('places_changed', function() {
let places = searchBox.getPlaces();
if (places.length == 0) {
return;
}
markers.forEach(function(marker) {
marker.setMap(null);
});
markers = [];
let bounds = new google.maps.LatLngBounds();
places.forEach(function(place) {
if (!place.geometry) {
console.log("Returned place contains no geometry");
return;
}
let icon = {
url: places.icon,
size: new google.maps.Size(71, 71),
origin: new google.maps.Point(0, 0),
anchor: new google.maps.Point(17, 34),
scaledSize: new google.maps.Size(25, 25)
};
markers.push(new google.maps.Marker({
map: map,
icon: icon,
title: place.name,
position: place.geometry.location
}));
if (place.geometry.viewport) {
bounds.union(place.geometry.viewport);
} else {
bounds.extend(place.geometry.location);
}
});
map.fitBounds(bounds);
});
}
1条答案
按热度按时间km0tfn4u1#
这是无效的:
url: places.icon,
.places
是一个Array,没有.icon
属性。这意味着url
是undefined
,给出了错误:InvalidValueError: setIcon: not a string; and not an instance of PinView; and no url property; and no path property
。使用
url: place.icon,
代替(forEach
将数组的每个元素分配给其回调函数中的place
变量)。注解(来自评论):如果需要默认的红色标记,不要使用place响应中的图标(从
marker
构造函数中删除icon: icon
行,以及icon
对象的定义)proof of concept fiddle
代码片段: