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



我们是否可以在谷歌地图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');

相关内容

  • 没有找到相关文章

最新更新