Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/88.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 获取用户';谷歌地图的位置_Javascript_Html_Google Maps - Fatal编程技术网

Javascript 获取用户';谷歌地图的位置

Javascript 获取用户';谷歌地图的位置,javascript,html,google-maps,Javascript,Html,Google Maps,因此,我尝试让谷歌地图提供方向服务,在我尝试获取用户的位置作为起点之前,它可以正常工作。其想法是为用户提供从当前位置到三个位置之一的方向。我一直在跟随一些关于谷歌API的指南 当我尝试获取用户的位置时,我尝试使用: if (navigator.geolocation) { var position = navigator.geolocation.getCurrentPosition(); googleCoords = new google.maps.LatLng(

因此,我尝试让谷歌地图提供方向服务,在我尝试获取用户的位置作为起点之前,它可以正常工作。其想法是为用户提供从当前位置到三个位置之一的方向。我一直在跟随一些关于谷歌API的指南

当我尝试获取用户的位置时,我尝试使用:

if (navigator.geolocation) {
        var position = navigator.geolocation.getCurrentPosition();
        googleCoords = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);


        }

        else {
            alert("No geolocation!");
        }
但出于某种原因,这打破了地图?尝试在变量中获取用户坐标,以便在方向服务中使用,并作为地图的原点。谢谢

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Displaying text directions with <code>setPanel()</code></title>
<style>

  #map {
    height: 100%;
  }

  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  #floating-panel {
    position: absolute;
    top: 10px;
    left: 25%;
    z-index: 5;
    background-color: #fff;
    padding: 5px;
    border: 1px solid #999;
    text-align: center;
    font-family: 'Roboto','sans-serif';
    line-height: 30px;
    padding-left: 10px;
  }
  #right-panel {
    font-family: 'Roboto','sans-serif';
    line-height: 30px;
    padding-left: 10px;
  }

  #right-panel select, #right-panel input {
    font-size: 15px;
  }

  #right-panel select {
    width: 100%;
  }

  #right-panel i {
    font-size: 12px;
  }
  #right-panel {
    height: 100%;
    float: right;
    width: 390px;
    overflow: auto;
  }
  #map {
    margin-right: 400px;
  }
  #floating-panel {
    background: #fff;
    padding: 5px;
    font-size: 14px;
    font-family: Arial;
    border: 1px solid #ccc;
    box-shadow: 0 2px 2px rgba(33, 33, 33, 0.4);
    display: none;
  }
  @media print {
    #map {
      height: 500px;
      margin: 0;
    }
    #right-panel {
      float: none;
      width: auto;
    }
  }
  </style>
  </head>
  <body>
   <div id="floating-panel">
  <strong>Start:</strong>
  <select id="start">

    <option value="USERLOCATION">Your location</option>

  </select>
  <br>
  <strong>End:</strong>
  <select id="end">
    <option value="memorial university of newfoundland">St. John's 
Campus</option>
    <option value="marine insitute of memorial university of 
newfoundland">Marine Insitute</option>
    <option value="grenfell campus">Grenfell Campus</option>

  </select>
</div>
<div id="right-panel"></div>
<div id="map"></div>
<script>
    var lat = null;
    var long = null;
    var googleCoords = null;
  function initMap() {

    if (navigator.geolocation) {
        navigator.geolocation.getCurrentPosition();
        googleCoords = new google.maps.LatLng(position.coords.latitude, 
 position.coords.longitude);


        }

        else {
            alert("No geolocation!");
        }


    var directionsDisplay = new google.maps.DirectionsRenderer;
    var directionsService = new google.maps.DirectionsService;
    var map = new google.maps.Map(document.getElementById('map'), {
      zoom: 7,
      center: {lat: 41.85, lng: -87.65}
    });
    directionsDisplay.setMap(map);
    directionsDisplay.setPanel(document.getElementById('right-panel'));

    var control = document.getElementById('floating-panel');
    control.style.display = 'block';
    map.controls[google.maps.ControlPosition.TOP_CENTER].push(control);

    var onChangeHandler = function() {
      calculateAndDisplayRoute(directionsService, directionsDisplay);
    };
    document.getElementById('start').addEventListener('change', 
onChangeHandler);
    document.getElementById('end').addEventListener('change', 
onChangeHandler);
  }

  function calculateAndDisplayRoute(directionsService, directionsDisplay) {
    var start = document.getElementById('start').value;
    var end = document.getElementById('end').value;
    directionsService.route({
      origin: start,
      destination: end,
      travelMode: 'DRIVING'
    }, function(response, status) {
      if (status === 'OK') {
        directionsDisplay.setDirections(response);
      } else {
        window.alert('Directions request failed due to ' + status);
      }
    });
  }
</script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=APIKEY&callback=initMap">
</script>
  </body>

您必须在函数getCurrentPosition中执行此操作

navigator.geolocation.getCurrentPosition(function(position) {
                var pos = {
                  lat: position.coords.latitude,
                  lng: position.coords.longitude
                };

您应该像这样从回调函数中获取位置

  if (navigator.geolocation) {
    navigator.geolocation.getCurrentPosition(function(position){
        var googleCoords = {
          lat: position.coords.latitude,
          lng: position.coords.longitude
        };
    });
  } else {
    alert("Geolocation is not supported by this browser.");
  }

您发布的代码似乎还可以,我认为问题出在其他地方。