我有一个网址: - Link
我想改变lat和lng值
我有一个代码来从IP地址获取区域名称和纬度和经度值
这是我的代码: -
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" href="index.css">
<script type="text/javascript" src="http://j.maxmind.com/app/geoip.js" ></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
function load(){
var region= geoip_city();
var lan=geoip_latitude();
var lng=geoip_longitude()
$('div').html(region)
alert(lan);
alert(lng);
}
</script>
<body onload="load()">
<div></div>
</body>
</head>
</html>
使用此代码,我可以提醒一个纬度和经度值
我想用我的lat和lng值改变我给定的url链接。
答案 0 :(得分:0)
您可以使用javascript重定向到您的网页。
window.location.replace('http://services.gisgraphy.com/geoloc/search?lat='+lan+'&lng='+lng+'&radius=7000');
或:
window.location.href = 'http://services.gisgraphy.com/geoloc/search?lat='+lan+'&lng='+lng+'&radius=7000';
更新:
或者像Amit说的那样,用那些vars进行AJAX调用