我試圖使用Geonames Servcie API獲取用戶當前位置的國家/地區代碼。我相信geonames服務API將返回給我兩個字母的國家代碼而不是三個字母的國家代碼,我需要三個字母的國家代碼。爲此,我已經在兩個字母的國家代碼和三個字母的國家代碼之間進行了映射。如何使用geonames服務api獲取國家/地區代碼信息而不是html5位置對象事物
下面是我的代碼,以及一些如何,我的警報框沒有工作。我很確定我錯過了什麼?
<html>
<head>
<title>Visitor's location</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
$(document).ready(function() {
$.getJSON('http://ws.geonames.org/countryCode', {
lat: position.coords.latitude,
lng: position.coords.longitude,
type: 'JSON'
}, function(result) {
alert('Country: ' + result.countryName + '\n' + 'Code: ' + result.countryCode);
$('#newURL').attr('href','https://www.google.com&jobid='+result.countryCode);
});
});
</script>
</head>
<body>
<a id="newURL">URL</a>
</body>
</html>
我在上述代碼中做了什麼錯?以下是我在控制檯上遇到的錯誤。
Uncaught ReferenceError: position is not defined
我認爲這個錯誤很清楚什麼是錯的,不是嗎? –
也許你沒有設置位置? – Daniele
是的..但我不知道我如何得到這個位置對象,而不要求用戶啓用物理位置的東西。或者有沒有其他解決方法呢? – ferhan