为不同位置获取恒定或相同的纬度和经度

时间:2018-06-14 09:51:55

标签: javascript google-api

我们使用Google Java Script API来捕获不同位置的纬度和经度,我们为不同的位置获得恒定或相同的经度和经度。这对于前20个点来说是完美的,然后问题就存在了。对于不同的位置点,我们获得相同的纬度和经度。所有移动设备都会发生这种情况。

请在这方面帮助我们。

我们使用以下代码:

<script>

      var map, infoWindow;
      function initMap() {
        map = new google.maps.Map(document.getElementById('map'), {
          center: {lat: -34.397, lng: 150.644},
          zoom: 6
        });
        infoWindow = new google.maps.InfoWindow;

        // Try HTML5 geolocation.
        if (navigator.geolocation) {
          navigator.geolocation.getCurrentPosition(function(position) {
            var pos = {
              lat: position.coords.latitude,
              lng: position.coords.longitude
            };
            var reslat = pos.lat;
            var reslng = pos.lng;
alert('X-'+reslat + ' &Y-'+reslng);

//alert(reslng);
document.getElementById('reslat').value = reslat;
document.getElementById('reslng').value = reslng;
            infoWindow.setPosition(pos);
            infoWindow.setContent('Location found.');
            infoWindow.open(map);
            map.setCenter(pos);
          }, function() {
            handleLocationError(true, infoWindow, map.getCenter());
          });
        } else {
          // Browser doesn't support Geolocation
          handleLocationError(false, infoWindow, map.getCenter());
        }
      }

      function handleLocationError(browserHasGeolocation, infoWindow, pos) {
        infoWindow.setPosition(pos);
        infoWindow.setContent(browserHasGeolocation ?
                              'Error: The Geolocation service failed.' :
                              'Error: Your browser doesn\'t support geolocation.');
        infoWindow.open(map);
      }

    </script>
    <script async defer
    src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCnq0s0tTVAIRPJHfS8F1EC5nXEmTjYxW0&callback=initMap">
    </script>

0 个答案:

没有答案