Google 地点 API 没有地图的图书馆使用 - javascript
Google Places API library use without map - javascript
我需要从特定坐标获取 100 米半径内最近的机构。
我找到了 Google Places API 示例代码,但我没有在我的应用程序中使用地图,因为此结果将呈现在列表中。
这是 API 代码:
var map;
var infowindow;
function initialize() {
var pyrmont = new google.maps.LatLng(-33.8665433, 151.1956316);
map = new google.maps.Map(document.getElementById('map-canvas'), {
center: pyrmont,
zoom: 15
});
var request = {
location: pyrmont,
radius: 500,
types: ['store']
};
infowindow = new google.maps.InfoWindow();
var service = new google.maps.places.PlacesService(map);
service.nearbySearch(request, callback);
}
function callback(results, status) {
if (status == google.maps.places.PlacesServiceStatus.OK) {
for (var i = 0; i < results.length; i++) {
createMarker(results[i]);
}
}
}
function createMarker(place) {
var placeLoc = place.geometry.location;
var marker = new google.maps.Marker({
map: map,
position: place.geometry.location
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.setContent(place.name);
infowindow.open(map, this);
});
}
google.maps.event.addDomListener(window, 'load', initialize);
这里有人发现可以用节点渲染属性,
但是当我尝试在其中渲染时:
var $attrib = $('<div id="attributions"></div>');
$('#main').append($attrib);
...
service = new google.maps.places.PlacesService($attrib);
service.nearbySearch(request, callback);
我收到一个错误:
TypeError: this.j[Wb] is not a function
来自 API 图书馆深处的某个地方。
我希望这些信息足以解决问题
$attrib
可能不是一个节点,我猜它是一个 jQuery-对象。
使用
service = new google.maps.places.PlacesService($attrib[0]);
或没有jQuery:
service = new google.maps.places
.PlacesService(document.getElementById('main')
.appendChild(document.createElement('div')));
我需要从特定坐标获取 100 米半径内最近的机构。 我找到了 Google Places API 示例代码,但我没有在我的应用程序中使用地图,因为此结果将呈现在列表中。 这是 API 代码:
var map;
var infowindow;
function initialize() {
var pyrmont = new google.maps.LatLng(-33.8665433, 151.1956316);
map = new google.maps.Map(document.getElementById('map-canvas'), {
center: pyrmont,
zoom: 15
});
var request = {
location: pyrmont,
radius: 500,
types: ['store']
};
infowindow = new google.maps.InfoWindow();
var service = new google.maps.places.PlacesService(map);
service.nearbySearch(request, callback);
}
function callback(results, status) {
if (status == google.maps.places.PlacesServiceStatus.OK) {
for (var i = 0; i < results.length; i++) {
createMarker(results[i]);
}
}
}
function createMarker(place) {
var placeLoc = place.geometry.location;
var marker = new google.maps.Marker({
map: map,
position: place.geometry.location
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.setContent(place.name);
infowindow.open(map, this);
});
}
google.maps.event.addDomListener(window, 'load', initialize);
这里有人发现可以用节点渲染属性, 但是当我尝试在其中渲染时:
var $attrib = $('<div id="attributions"></div>');
$('#main').append($attrib);
...
service = new google.maps.places.PlacesService($attrib);
service.nearbySearch(request, callback);
我收到一个错误:
TypeError: this.j[Wb] is not a function
来自 API 图书馆深处的某个地方。 我希望这些信息足以解决问题
$attrib
可能不是一个节点,我猜它是一个 jQuery-对象。
使用
service = new google.maps.places.PlacesService($attrib[0]);
或没有jQuery:
service = new google.maps.places
.PlacesService(document.getElementById('main')
.appendChild(document.createElement('div')));