我们能否像在 Google 地球中那样以卫星视图方式在 Google 地图 V3 中显示地理边界?

发布于 2024-11-17 14:28:07 字数 79 浏览 3 评论 0原文

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

谢谢!

Can we display geographical borders of country in satellite view of Google Maps V3, similarly the way border is displayed in Google Earth in satellite view?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自控 2024-11-24 14:28:07

我相信这样的东西应该给你卫星视图的边界。

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');

I believe something like this should give you borders in satellite view.

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');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文