2

我是谷歌地图和 API 的新手,试图通过点击将地图平移到某个区域。我没有很高兴在 API 参考中找到我需要的东西,而且完全不确定如何去做,所以我没有太多,但这是我到目前为止所拥有的。

我想让它点击任何区域都会平移并放大以显示该区域的大部分内容,我相信这就是panToBounds的目的。

大多数功能将来自单击文本名称并让地图加载显示正确的位置,而不是单击地图本身

function initialize_neighbourhoodmap(neighbourhood_name) {
    var latlng = new google.maps.LatLng(42.949442,-81.228125);

    var zoom = 11;
    var neighbourhood_center = get_neighbourhood_center();

    var myOptions = {
      zoom: zoom,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };

    map = new google.maps.Map(document.getElementById("neighbourhood_map"),
        myOptions);

    var neighbourhoods = new google.maps.KmlLayer('http://maps.google.com/maps/ms?authuser=0&ie=UTF8&hl=en&oe=UTF8&vps=3&msa=0&output=kml&msid=217366496682144933685.0004bf3be50d3cd7ad1c2', {suppressInfoWindows: true, preserveViewport:true});
    neighbourhoods.setMap(map);

    google.maps.event.addListener(neighbourhoods, 'click', function(KmlFeatureData) {
        var neighbourhood_name = KmlFeatureData.featureData.name;
    load_neighbourhood(neighbourhood_name, neighbourhoods);
    window.location = "#neighbourhood-neighbourhood "+neighbourhood_name;
    });

    if(typeof neighbourhood_name !== 'undefined'){
        load_neighbourhood(neighbourhood_name, neighbourhood_center);
    }
}

function load_neighbourhood (neighbourhood_name, neighbourhoods) {
    var neighbourhoodbounds = nonexistentgetboundsfunction(neighbourhood_name);
    map.panToBounds(neighbourhood_center[neighbourhood_name][0]);
    $('#neighbourhood h2').html('neighbourhood '+neighbourhood_name);
}
4

1 回答 1

2

你肯定想要其他功能吗?在我看来,用户界面变得很尴尬。好吧,这里是:http: //jsfiddle.net/g343k/3/

我遇到了一个奇怪的“错误”,或者有些人可能称之为“功能”,它与 KML 多边形相关联。单击某个区域时,地图会平移到该区域的中心;然而,当点击外部的planning_district 区域时,地图会平移到框的中心,而不是点击的位置(Sean Mickey 在 FireFox 12 中进行了测试,它会平移到点击的位置)。除了将规划区细分为几十个小盒子之外,我想不出办法解决这个问题:(现在我已经编写了代码来忽略对规划区的点击。

google.maps.event.addListener(neighbourhoods, 'click', function(KmlFeatureData) {
        var neighbourhood_name = KmlFeatureData.featureData.name;
    load_neighbourhood(neighbourhood_name, neighbourhoods);
    window.location = "#neighbourhood-neighbourhood "+neighbourhood_name;
    // ADDED
    // Consider what to do when this outer area is clicked
    if(KmlFeatureData.featureData.name!="planning_districts_2008") {
      map.panTo(KmlFeatureData.latLng);
    }

    });

    // LEFT OUT
    //if(typeof neighbourhood_name !== 'undefined'){
    //    load_neighbourhood(neighbourhood_name, neighbourhood_center);
    //}

    // ADDED
    google.maps.event.addListener(map, 'click', function(event) {
      map.panTo(event.latLng);
    });
于 2012-05-04T22:29:31.157 回答