我正在使用自动完成功能获取输入地址的详细信息,但是单击地址后,我希望它使用http://en.mygeoposition.com/并在花式框中打开地图。我真的很难在选择地址时打开框,然后将地图加载到fancybox中。当选择了地址时,我有点担心要打开一个花哨框,但无法加载它,更不用说用http://en.mygeoposition.com/和地址单击了地图了吗????任何帮助都会很棒。
通过自动完成获取详细信息并激活fancybox的代码为:-
var placeSearch, autocomplete;
var componentForm = {
street_number: 'short_name',
route: 'long_name',
locality: 'long_name',
administrative_area_level_1: 'short_name',
country: 'long_name',
postal_code: 'short_name'
};
function initAutocomplete() {
// Create the autocomplete object, restricting the search to geographical
// location types.
autocomplete = new google.maps.places.Autocomplete(
/** @type {!HTMLInputElement} */(document.getElementById('autocomplete')),
{types: ['geocode']});
// When the user selects an address from the dropdown, populate the address
// fields in the form.
autocomplete.addListener('place_changed', fillInAddress);
}
function fillInAddress() {
$.fancybox.( 'Address selected' );
// Get the place details from the autocomplete object.
var place = autocomplete.getPlace();
for (var component in componentForm) {
document.getElementById(component).value = '';
document.getElementById(component).disabled = false;
}
// Get each component of the address from the place details
// and fill the corresponding field on the form.
for (var i = 0; i < place.address_components.length; i++) {
var addressType = place.address_components[i].types[0];
if (componentForm[addressType]) {
var val = place.address_components[i][componentForm[addressType]];
document.getElementById(addressType).value = val;
}
}
}
// Bias the autocomplete object to the user's geographical location,
// as supplied by the browser's 'navigator.geolocation' object.
function geolocate() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
var geolocation = {
lat: position.coords.latitude,
lng: position.coords.longitude
};
var circle = new google.maps.Circle({
center: geolocation,
radius: position.coords.accuracy
});
autocomplete.setBounds(circle.getBounds());
});
}
}
$。fancybox。(“选定的地址”);我需要打电话给fancybox以便使用地理位置打开和加载地图的地方,但我真的不知道从哪里开始?这是新手,而执行此类操作的文档则很少。谢谢