我们可以像在Google地球中一样在卫星视图中显示谷歌地图V3中的地理边界吗?

时间:2011-06-28 07:04:21

标签: google-maps-api-3 google-earth satellite

我们是否可以在Google地图V3的卫星视图中显示国家/地区的地理边界,类似于在Google地球中以卫星视图显示边框的方式?

谢谢!

1 个答案:

答案 0 :(得分: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');