2

マーカー付きの 2 つの場所を表示するマップがあります (そして、これら 2 つの場所の間で自動的に中央に配置されます)。ここでライブで見ることができます : http://goo.gl/rRDCEこのデモ: https://developers.google.com/maps/documentation/javascript/examples/directions-simple

マップは最初に 2 つの場所のマーカーをロードし、次にユーザーが開始点を選択すると、2 つの場所のいずれかへの道順を表示する必要があります。

これが私がこれまでに持っているものです(もちろん機能しません、マップはロードされていません)... :P http://jsfiddle.net/multiformeingegno/fhAJA/5/

ジャバスクリプト

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

function initialize() {
    directionsDisplay = new google.maps.DirectionsRenderer();
var locations = [
    ['Place 1', 41.897467, 12.470364, 2],
    ['Place 2', 41.896561, 12.467792, 1]
];

    var infowindow = new google.maps.InfoWindow();

    var bounds = new google.maps.LatLngBounds();

    for (i = 0; i < locations.length; i++) {
        marker = new google.maps.Marker({
            position: new google.maps.LatLng(locations[i][1], locations[i][2]),
            map: map
        });

        bounds.extend(marker.position);

        google.maps.event.addListener(marker, 'click', (function (marker, i) {
            return function () {
                infowindow.setContent(locations[i][0]);
                infowindow.open(map, marker);
            }
        })(marker, i));
    }

    map.fitBounds(bounds);

    var listener = google.maps.event.addListener(map, "idle", function () {
        map.setZoom(17);
        google.maps.event.removeListener(listener);
    });

    directionsDisplay.setMap(map);
}

function calcRoute() {
    var start = document.getElementById('start').value;
    var end = document.getElementById('end').value;
    var request = {
        origin: start,
        destination: end,
        travelMode: google.maps.DirectionsTravelMode.DRIVING
    };
    directionsService.route(request, function (response, status) {
        if (status == google.maps.DirectionsStatus.OK) {
            directionsDisplay.setDirections(response);
        }
    });
}

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

HTML:

<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<b>Start: </b>

<select id="start" onchange="calcRoute();">
    <option value="chicago, il">Chicago</option>
    <option value="st louis, mo">St Louis</option>
    <option value="joplin, mo">Joplin, MO</option>
    <option value="oklahoma city, ok">Oklahoma City</option>
    <option value="amarillo, tx">Amarillo</option>
    <option value="gallup, nm">Gallup, NM</option>
    <option value="flagstaff, az">Flagstaff, AZ</option>
    <option value="winona, az">Winona</option>
    <option value="kingman, az">Kingman</option>
    <option value="barstow, ca">Barstow</option>
    <option value="san bernardino, ca">San Bernardino</option>
    <option value="los angeles, ca">Los Angeles</option>
</select> <b>End: </b>

<select id="end" onchange="calcRoute();">
    <option value="41.897467, 12.470364">Place 1</option>
    <option value="41.896561, 12.467792">Place 2</option>
</select>
<div id="map" style="position:relative;width:500px;height:300px"></div>

私は何を間違っていますか?:)

4

1 に答える 1

2

google.maps.Map オブジェクトがありません。フィドルには API スクリプトが正しく含まれていません。

var myOptions = {
    zoom: 10,
    center: new google.maps.LatLng(-33.9, 151.2),
    mapTypeControl: true,
    mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
    navigationControl: true,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  }
  map = new google.maps.Map(document.getElementById("map"),
                                myOptions);

ワーキングフィドル(少なくともイタリアの場所からのルート案内が機能するように更新されました)

于 2013-04-30T00:36:50.337 に答える