javascript 如何禁用谷歌MapV3的地方?

30byixjq  于 2023-05-05  发布在  Java
关注(0)|答案(3)|浏览(152)

我试图将我的应用程序迁移到最新版本的谷歌MapAPI,并发现谷歌追加它自己的项目默认情况下从谷歌地方目录的Map。它看起来不正确连同我自己的记录,因为它创建重复的项目在Map上,可以正确地放置。
是否有一个选项如何隐藏这个本地企业或控制什么是显示,什么是不?
下面是示例代码:

<!DOCTYPE html>
<html>
  <head>
    <title>Google Maps JavaScript API v3 Example: Map Simple</title>
    <meta name="viewport"
        content="width=device-width, initial-scale=1.0, user-scalable=no">
    <meta charset="UTF-8">
    <style type="text/css">
      html, body, #map_canvas {
        margin: 0;
        padding: 0;
        height: 100%;
      }
    </style>
    <script type="text/javascript"
        src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
    <script type="text/javascript">
      var map;
      function initialize() {
        var myOptions = {
          zoom: 16,
          center: new google.maps.LatLng(37.422833333333,25.323166666667),
          mapTypeId: google.maps.MapTypeId.ROADMAP
        };
        map = new google.maps.Map(document.getElementById('map_canvas'),
            myOptions);
      }

      google.maps.event.addDomListener(window, 'load', initialize);
    </script>
  </head>
  <body>
    <div id="map_canvas"></div>
  </body>
</html>

正如你在Map上看到的,有一些小图标,你可以点击,信息会出现在气泡中。我需要隐藏此图标或至少禁用此项目的单击事件。

q8l4jmvw

q8l4jmvw1#

只是一个指针-这似乎是可能的自定义样式的Map。如果我没有弄错的话,您要查找的特征类型应该是poi.business,您应该将其visiblity变为off
有一个wizard可以帮助您构建选项数组。

wpcxdonn

wpcxdonn2#

可以通过添加以下代码来删除它:

var styles = [
   {
     featureType: "poi",
     stylers: [
      { visibility: "off" }
     ]   
    }
];

var styledMap = new google.maps.StyledMapType(styles,{name: "Styled Map"});
9njqaruj

9njqaruj3#

Hiding Map Features With Styling示例页面解释了如何实现这一点。
styles属性添加到选项对象并列出要隐藏的featureTypes

const map = new google.maps.Map(document.getElementById("map"), {
  center: { lat: -33.86, lng: 151.209 },
  zoom: 13,
  mapTypeControl: false,
  styles: [
    // Repeat this object for each feature.
    {
      featureType: "poi.business",
      stylers: [{ visibility: "off" }],
    },
  ],
});

还有更多的自定义Map的例子,样式向导(见“更多选项”)也非常有用,正如其他人所指出的那样。

相关问题