gpt4 book ai didi

javascript - 嵌入式谷歌地图无法在 Firefox 中完全呈现

转载 作者:行者123 更新时间:2023-11-30 06:14:14 24 4
gpt4 key购买 nike

我最近使用 Places Autocomplete 小部件设置了一个嵌入式谷歌地图,并注意到在 Firefox 中,UI 只渲染了一半时间或根本不渲染。有时我会得到一张空白的“灰色死亡 map ”。该 map 在 Chrome 上运行良好,性能问题为零。这是一个已知问题吗?

我的代码基于 Google 文档中的地点自动完成示例。下面是 Maps js 开发人员文档中保存的 fiddle 。当我在 Firefox 中打开它时,它呈现延迟或不完整。如果呈现不完整,并且我触发了搜索事件,则 UI 会完全加载。

https://jsfiddle.net/rcatwr/osza564q/

大多数针对此类问题的回复建议刷新 map (google.maps.event.trigger(map, 'resize');) 或确保正确设置 map 选项(缩放和居中)。我调查了这些路径。正如我所说,它在 Chrome 中运行良好,在 Firefox 中运行不佳。

// This example requires the Places library. Include the libraries=places
// parameter when you first load the API. For example:
// <script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&libraries=places">

function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
center: {lat: -33.8688, lng: 151.2195},
zoom: 13
});
var card = document.getElementById('pac-card');
var input = document.getElementById('pac-input');
var types = document.getElementById('type-selector');
var strictBounds = document.getElementById('strict-bounds-selector');

map.controls[google.maps.ControlPosition.TOP_RIGHT].push(card);

var autocomplete = new google.maps.places.Autocomplete(input);

// Bind the map's bounds (viewport) property to the autocomplete object,
// so that the autocomplete requests use the current map bounds for the
// bounds option in the request.
autocomplete.bindTo('bounds', map);

// Set the data fields to return when the user selects a place.
autocomplete.setFields(
['address_components', 'geometry', 'icon', 'name']);

var infowindow = new google.maps.InfoWindow();
var infowindowContent = document.getElementById('infowindow-content');
infowindow.setContent(infowindowContent);
var marker = new google.maps.Marker({
map: map,
anchorPoint: new google.maps.Point(0, -29)
});

autocomplete.addListener('place_changed', function() {
infowindow.close();
marker.setVisible(false);
var place = autocomplete.getPlace();
if (!place.geometry) {
// User entered the name of a Place that was not suggested and
// pressed the Enter key, or the Place Details request failed.
window.alert("No details available for input: '" + place.name + "'");
return;
}

// If the place has a geometry, then present it on a map.
if (place.geometry.viewport) {
map.fitBounds(place.geometry.viewport);
} else {
map.setCenter(place.geometry.location);
map.setZoom(17); // Why 17? Because it looks good.
}
marker.setPosition(place.geometry.location);
marker.setVisible(true);

var address = '';
if (place.address_components) {
address = [
(place.address_components[0] && place.address_components[0].short_name || ''),
(place.address_components[1] && place.address_components[1].short_name || ''),
(place.address_components[2] && place.address_components[2].short_name || '')
].join(' ');
}

infowindowContent.children['place-icon'].src = place.icon;
infowindowContent.children['place-name'].textContent = place.name;
infowindowContent.children['place-address'].textContent = address;
infowindow.open(map, marker);
});

// Sets a listener on a radio button to change the filter type on Places
// Autocomplete.
function setupClickListener(id, types) {
var radioButton = document.getElementById(id);
radioButton.addEventListener('click', function() {
autocomplete.setTypes(types);
});
}

setupClickListener('changetype-all', []);
setupClickListener('changetype-address', ['address']);
setupClickListener('changetype-establishment', ['establishment']);
setupClickListener('changetype-geocode', ['geocode']);

document.getElementById('use-strict-bounds')
.addEventListener('click', function() {
console.log('Checkbox clicked! New state=' + this.checked);
autocomplete.setOptions({strictBounds: this.checked});
});
}

最佳答案

此问题已在 Google 的问题跟踪器中报告:

https://issuetracker.google.com/issues/138267513

它已在 Firefox v68.0.2 中修复。

另见相关内容:

google-places bug in firefox browser
Embedded Google Maps tiles not loading in Firefox second page load until zoomed

关于javascript - 嵌入式谷歌地图无法在 Firefox 中完全呈现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57207294/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com