gpt4 book ai didi

javascript - 我可以知道使用这种惰性方法时是否在 Google map 上找不到某个位置吗?

转载 作者:行者123 更新时间:2023-11-28 02:51:13 25 4
gpt4 key购买 nike

我正在显示基于外部来源提供的街道地址的 Google map 。

我的 JavaScript 非常简单,我像这样构建链接

var googleMap = 'http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=' + address + '&ie=UTF8';

这既快速又简单,而且有效。但有些传入地址并不完全是地址(它们包含一些不应该存在的内容)。

当 Google map 无法识别地址时,它会默认显示美国 map 。不幸的是,我在澳大利亚。

有没有办法使用这种惰性方法来知道 Google map 是否无法匹配该地址,或者我可以默认显示澳大利亚吗?

...或者我需要查看 API 吗?

最佳答案

使用 maps.google.com.au 怎么样?请注意,参数可能会有所不同。

http://maps.google.com.au/maps?q=Melbourne

http://maps.google.com.au/maps?q=Something-Garbage-That-Does-Not-Exist

您还可以使用Maps API ,正如你所建议的。像这样的事情很容易做到:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Google Maps Geocoding Default Location</title>
<script src="http://maps.google.com/maps/api/js?sensor=false"
type="text/javascript"></script>
</head>
<body>
<div id="map" style="width: 400px; height: 300px;"></div>

<script type="text/javascript">

var address = 'Melbourne, Australia';

var map = new google.maps.Map(document.getElementById('map'), {
mapTypeId: google.maps.MapTypeId.TERRAIN,
center: new google.maps.LatLng(-25.50, 135.00),
zoom: 3
});

var geocoder = new google.maps.Geocoder();

geocoder.geocode({
'address': address
},
function(results, status) {
if(status == google.maps.GeocoderStatus.OK) {
new google.maps.Marker({
position: results[0].geometry.location,
map: map
});
map.setCenter(results[0].geometry.location);
}
});

</script>
</body>
</html>

屏幕截图:

Google Maps Geocoding Default Location

如果您要使用address = 'Something Garbage That does not Exist',则另一个屏幕截图:

Google Maps Geocoding Default Location

关于javascript - 我可以知道使用这种惰性方法时是否在 Google map 上找不到某个位置吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3723207/

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