我们是否可以在谷歌地图V3的卫星视图中显示国家的地理边界,类似于在谷歌地球的卫星视图显示边界的方式?
谢谢!
我相信这样的东西应该会在卫星视图中为您提供边界。
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');