0

我有这个 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>
4

1 回答 1

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 功能。我希望它现在对你有用。

于 2012-06-13T10:55:21.813 回答