1

希望有人可以帮助我,我试图用缩放和居中显示两个方向点,所以我可以只显示 2 个点而不是所有地图!看来变焦不起作用。

这是我的代码

       var map;
        function initialize(){                  
                  var mapOptions = {
                  zoom: 14,
                  disableDefaultUI: true,
                  mapTypeId: google.maps.MapTypeId.ROADMAP
                };

                map = new google.maps.Map(document.getElementById('map_canvas'), mapOptions);


                var request = {
                        origin:"Mexico",
                        destination:"Montreal",
                        travelMode: google.maps.TravelMode.DRIVING
                };

                var directionsService = new google.maps.DirectionsService();
                var directionsDisplay = new google.maps.DirectionsRenderer();

                // Indicamos dónde esta el mapa para renderizarnos
                directionsDisplay.setMap(map);

                directionsService.route(request, function(result, status) {
                    if (status == google.maps.DirectionsStatus.OK) {
                      directionsDisplay.setDirections(result);
                    }
                  }); 
        }

        google.maps.event.addDomListener(window, 'load', initialize);

提前致谢

4

1 回答 1

0

要解决您的问题更改:

disableDefaultUI: true, 

disableDefaultUI: false,

来自 [Google Maps API]:https ://developers.google.com/maps/documentation/javascript/controls#DisablingDefaults

您可能希望关闭 API 的默认 UI 设置。为此,请将地图的 disableDefaultUI 属性(在地图选项对象内)设置为 true。此属性会禁用来自 Google Maps API 的任何自动 UI 行为。

如果您仍想禁用 UI 元素,您可能应该单独执行它们。

于 2013-03-22T18:59:26.533 回答