Google API を使用してクライアントの場所を検出していますが、常に「あなたの場所は Google ローダーによって検出されませんでした」と表示されます。
クライアントの場所の国コードを見つける必要がありますが、うまくいきません。
<script src="http://www.google.com/jsapi" language="javascript"></script>
<script language="javascript">
if (google.loader.ClientLocation != null) {
document.write("Your Location Is: " + google.loader.ClientLocation.address.country_code);
} else {
document.write("Your Location Was Not Detected By Google Loader");
}
</script>