1

我们能否在 Google Maps V3 的卫星视图中显示国家的地理边界,就像在卫星视图中谷歌地球中显示边界的方式一样?

谢谢!

4

1 回答 1

3

我相信这样的事情应该会给你在卫星视图中的边界。

var custom-Style = [
                    { featureType: "administrative.country", elementType: "all", stylers: [{ visibility: "on"}] },
                    { featureType: "administrative.land_parcel", elementType: "all", stylers: [{ visibility: "on"}] }
                   ];

var myOptions = {mapTypeId: google.maps.MapTypeId.SATELLITE};

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

var styledMapOptions = {
    name: "custom-Style"
}

var customMapType = new google.maps.StyledMapType(custom-Style, styledMapOptions);

map.mapTypes.set('custom-Style', customMapType);
map.setMapTypeId('custom-Style');
于 2011-06-28T07:31:52.450 回答