Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
112 views
in Technique[技术] by (71.8m points)

html - Can't get Google Directions API to work properly (Javascript)

I'm working on the backend of a website and I want the map, on a specific page, to display the route between two locations.

I've arranged a Google API key to use the service and the map is rendered just fine, the problem is it doesn't display any route, it only displays the map in general, here's my code:

    <div class="map-responsive">
        <div id="map" class="col-lg-10"></div>
    </div>

    <script>
        function initMap() {
            var directionsService = new google.maps.DirectionsService;
            var directionsDisplay = new google.maps.DirectionsRenderer;
            var map = new google.maps.Map(document.getElementById('map'), {
            zoom: 7,
            center: {lat: 37.1513841, lng: -8.1198707}
            });
            directionsDisplay.setMap(map);

        }

        function calculateAndDisplayRoute(directionsService, directionsDisplay) {
            directionsService.route({
            origin: 'Lisboa',
            destination: 'Porto',
            travelMode: 'DRIVING'
            }, function(response, status) {
            if (status === 'OK') {
                directionsDisplay.setDirections(response);
            } else {
                window.alert('Directions request failed due to ' + status);
            }
            });
        }

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

I've set the "origin" and "destination" to two portuguese cities just for testing, below is the output of the map, with no errors on the browsers console

Output for Maps API

And also, how can I set the "center" and the "zoom" to be dynamic? The output is supposed to be centered on the route between the two locations and not on a fixed zoom nor location in specific,

Thanks in advane!

question from:https://stackoverflow.com/questions/65925905/cant-get-google-directions-api-to-work-properly-javascript

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...