我们是否可以在Google地图V3的卫星视图中显示国家/地区的地理边界,类似于在Google地球中以卫星视图显示边框的方式?
谢谢!
答案 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');