如何在KRL规则中获取用户位置?
答案 0 :(得分:5)
这是一个简单的例子
rule locations is active {
select using ".*" setting ()
pre {
whereareyou = location:region();
msg = <<
#{whereareyou}
>>;
}
notify("I think you live in", msg) with sticky = true;
}
这是文档。 http://docs.kynetx.com/docs/Location
您会发现的问题是,有时ip并不真正代表用户的真实位置,因为用户可能正在使用代理。此外,对于大多数ISP而言,ip已注册到某个位置,并且ISP的集线器不是在任何给定时刻使用IP的直接位置。
随着浏览器中html 5和位置apis的出现,未来可能会提供更准确的位置,但尚未在KRL中实现。
答案 1 :(得分:2)
HTM5浏览器位置现已上市,但需要一些javascript才能实现。这是一个使用浏览器位置API的稍微旧的应用程序。这可能会更新为不使用表单,但这里仅供参考:
ruleset a8x47 {
meta {
name "WikiNearMe"
description <<
Shows Wikipedia content near the user.
>>
author "TubTeam"
logging off
}
dispatch {
domain "wikipedia.org"
}
global {
datasource placearticles:JSON <- "http://ws.geonames.org/findNearbyWikipediaJSON";
}
rule getlocation is active {
select when pageview "/wiki/" setting ()
pre {
form = <<
<div id="my_div">
<form id="nearmeform" onsubmit="return false" style="display:none;">
<input type="text" name="lat" id="nearmelat"/>
<input type="text" name="lon" id="nearmelon"/>
<input type="submit" value="Submit" />
</form>
<div id="nearmelinks" style="text-align:left;">
<h2>Nearby Links</h2>
</div>
</div>
>>;
}
// notify("Hello World", "This is a sample rule.");
emit <<
navigator.geolocation.getCurrentPosition(function(position){
$K("#nearmelat").val(position.coords.latitude);
$K("#nearmelon").val(position.coords.longitude);
$K("#nearmeform").submit();
//alert("lat: " + position.coords.latitude + " lon: " + position.coords.longitude);
});
>>
{
append("#siteNotice", form);
watch("#nearmeform", "submit");
}
}
rule shownearby is active {
select when web submit "#nearmeform"
foreach datasource:placearticles({"lat":page:param("lat"), "lng":page:param("lon"), "style":"full", "formatted":"true"}).pick("$..geonames") setting (item)
pre {
title = item.pick("$..title");
link = item.pick("$..wikipediaUrl");
}
append("#nearmelinks", "<a href='http://#{link}'>#{title}</a><br/>");
}
}