gpt4 book ai didi

javascript - 如何在页面加载时初始化反向地理编码?

转载 作者:行者123 更新时间:2023-11-27 23:04:28 25 4
gpt4 key购买 nike

我正在尝试对 place_id 进行反向地理编码 (Google),遵循 this google dev.guide 。但我想在加载页面时执行地理编码函数,而不是使用“单击”事件来初始化地理编码函数。所以我用以下代码替换了 click-eventListener:

        document.addEventListener("DOMContentLoaded", function() {
geocodePlaceId(geocoder, map, infowindow);
});

在地理编码函数中,我对 place_id 进行了硬编码(通过示例):

function geocodePlaceId(geocoder, map, infowindow) {
var placeId = ChIJw2IskpfGxUcRRNxZ4A_lGWk;
geocoder.geocode({'placeId': placeId}, function(results, status) {
if (status === google.maps.GeocoderStatus.OK) {
etcetc
}

不幸的是,这不起作用,即没有初始化反向地理编码。非常欢迎对这位非常温和的 java 程序员提出任何建议!

最佳答案

我在您的代码中遇到了 javascript 错误:Uncaught ReferenceError: ChIJw2IskpfGxUcRRNxZ4A_lGWk 未定义。 placeId 是一个字符串。

这个:

var placeId = ChIJw2IskpfGxUcRRNxZ4A_lGWk;

应该是:

var placeId = "ChIJw2IskpfGxUcRRNxZ4A_lGWk";

代码片段:

function geocodePlaceId(geocoder, map, infowindow) {
var placeId = "ChIJw2IskpfGxUcRRNxZ4A_lGWk";
geocoder.geocode({
'placeId': placeId
}, function(results, status) {

if (status === google.maps.GeocoderStatus.OK) {
map.setZoom(11);
map.setCenter(results[0].geometry.location);
var marker = new google.maps.Marker({
position: results[0].geometry.location,
map: map
});
infowindow.setContent(results[0].formatted_address);
infowindow.open(map, marker);
} else {
window.alert('Geocoder failed due to: ' + status);
}
});
}

function initialize() {
var map = new google.maps.Map(
document.getElementById("map_canvas"), {
center: new google.maps.LatLng(37.4419, -122.1419),
zoom: 13,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
var geocoder = new google.maps.Geocoder();
var infowindow = new google.maps.InfoWindow();
geocodePlaceId(geocoder, map, infowindow);
}
google.maps.event.addDomListener(window, "load", initialize);
html,
body,
#map_canvas {
height: 100%;
width: 100%;
margin: 0px;
padding: 0px
}
<script src="https://maps.googleapis.com/maps/api/js"></script>
<div id="map_canvas"></div>

关于javascript - 如何在页面加载时初始化反向地理编码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36719302/

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