gpt4 book ai didi

javascript - 带地理编码的简单谷歌地图

转载 作者:行者123 更新时间:2023-11-29 20:13:24 26 4
gpt4 key购买 nike

我做了一个简单的 GoogleMap,它响应 script.php?q=canada 并显示 map 。

一个问题是它总是以 var latlng = new google.maps.LatLng(34.052234,-118.243685); 为中心加载 map 一秒钟,然后加载正确的 map 。

我的代码有什么问题?

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no"/>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title><?=$_GET['q']?></title>
<link href="http://code.google.com/apis/maps/documentation/javascript/examples/default.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="//maps.googleapis.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
var geocoder;
var map;
function initialize() {
geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng(34.052234,-118.243685);
var address = '<?=$_GET['q']?>';

var myOptions = {
zoom: 10,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
geocoder.geocode( { 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
// autozoom
map.fitBounds(results[0].geometry.viewport);
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location,
title: 'by Quick Maps',
clickable: false
});
} else {
alert("Geocode was not successful for the following reason: " + status);
}
});
}
</script>
</head>
<body onload="initialize()">
<div id="map_canvas"></div>
</body>
</html>

附带问题:如何用 map 上的简单消息替换 alert("Geocode was not successful for the following reason: "+ status);

最佳答案

1) 谷歌地图初始化到一个位置,然后你告诉它另一个。所以你有两个选择:

a)Move the map instantiation into the geocode callback.
b)Initialize to the location you want. To do this you will need to read a bit more about how google maps works instead of just using their basic example.

2) 至于漂亮的错误消息而不是粗暴的警报,请将其添加到您的 html 中。

<p id="errorMessage" style="display:none;">Sorry, couldn't find that address</p>

然后显示它而不是警报。

} else {

// alert("Geocode was not successful for the following reason: " + status);
document.getElementById('errorMessage').style.display = "block";
}

谷歌地图在其最新版本中确实有一些不错的叠加层,但它主要围绕 map 上的位置和区域范围——而不是一般的文本信息。所以您看,您需要在 map 之外的 HTML 页面上方或下方创建您自己的 UI。如果你真的想在 map 顶部显示它,你可以在 errorMessage div 上设置以下 css 属性:

#errorMessage {
position:absolute;
left: 50%;
top: 30%;
}

关于javascript - 带地理编码的简单谷歌地图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8416364/

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