我有这个javascript代码,它根据用户位置获取位置列表并重新排序列表项。如何更改代码,使其仅显示1KM附近的位置,而不是仅重新排序整个列表。
<script type="text/javascript">
$(document).bind("mobileinit", function () {
$.mobile.ajaxEnabled = false;
});
</script>
<script src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"></script>
<script>
function findMe() {
if (navigator.geolocation != undefined) {
navigator.geolocation.watchPosition(onFound, onError);
}
}
function onFound(pos) {
var userLat = pos.coords.latitude;
var userLong = pos.coords.longitude;
$('ol li').each(function (index) {
var locationLat = $(this).find('.lat').html();
var locationLong = $(this).find('.long').html();
var distance = getDistance(userLat, locationLat, userLong, locationLong);
$(this).data("distance", distance);
})
reOrder();
}
function onError(pos) {
alert("Something Went wrong");
}
function reOrder() {
$('ol li').sort(sortAlpha).appendTo('ol');
}
function sortAlpha(a, b) {
return $(a).data('distance') > $(b).data('distance') ? 1 : -1;
};
function getDistance(lat1, lat2, lon1, lon2) {
var R = 6371; // km
var d = Math.acos(Math.sin(lat1) * Math.sin(lat2) +
Math.cos(lat1) * Math.cos(lat2) *
Math.cos(lon2 - lon1)) * R;
return d;
};
</script>
<style>
ol .long, ol .lat
{
display: none;
}
</style>
答案 0 :(得分:0)
你可以这样写:
function filterList(){
$('ol li').each(function(){
if($(this).data('distance') > 1){
$(this).remove();
}
});
}
您可以执行以下操作而不是上述解决方案吗?
function onFound(pos) {
var userLat = pos.coords.latitude;
var userLong = pos.coords.longitude;
$('ol li').each(function (index) {
var locationLat = $(this).find('.lat').html();
var locationLong = $(this).find('.long').html();
var distance = getDistance(userLat, locationLat, userLong, locationLong);
if(Math.ceil(distance)>1){
$(this).remove();
}
else{
$(this).data("distance", distance);
}
});
reOrder();
}
您可以删除filterList功能。我希望它现在适合你。