我一直在使用一些ip定位器,但它令人毛骨悚然。它没有找到有限的位置。
然后我在某些网站上找到了找到您所在位置的Google API代码 我猜它在世界范围内运作。
现在的问题是,代码使用JavaScript,我想要的是php。 这是代码:
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
function geoTest() {
if (google.loader.ClientLocation) {
var latitude = google.loader.ClientLocation.latitude;
var longitude = google.loader.ClientLocation.longitude;
var city = google.loader.ClientLocation.address.city;
var country = google.loader.ClientLocation.address.country;
var country_code = google.loader.ClientLocation.address.country_code;
var region = google.loader.ClientLocation.address.region;
var text = 'Your Location<br /><br />Latitude: ' + latitude + '<br />Longitude: ' + longitude + '<br />City: ' + city + '<br />Country: ' + country + '<br />Country Code: ' + country_code + '<br />Region: ' + region;
} else {
var text = 'Google was not able to detect your location';
}
document.write(text);
}
geoTest();
</script>
我想将google.loader.ClientLocation.address.city
传递给我的PHP代码。
否则,如果您熟悉使用PHP或xml执行相同操作的其他Google API。