Google Maps API固态边框

时间:2018-11-16 11:55:53

标签: javascript json google-maps google-maps-api-3

在创建地图时,状态边框会以虚线显示。有什么办法可以使它们牢固?我正在使用json中的省设置,但似乎无法在.stroke中找到实线的指令?

1 个答案:

答案 0 :(得分:3)

如果您无法使用Styled Maps(我现在不知道怎么做),可以使用样式化的地图来隐藏状态边界:

 {
    featureType: 'administrative.province',
    elementType: 'geometry.stroke',
    stylers: [{visibility: '#off'}]
  },

然后添加您自己的(请注意,您需要一个与地图图块稍微一致的边界源)。

使用FusionTable边框的示例

proof of concept fiddle

proof of concept fiddle with styled borders

screenshot of resulting map

代码段:

function initMap() {
  // Styles a map in night mode.
  var map = new google.maps.Map(document.getElementById('map'), {
    center: {
      lat: 40.674,
      lng: -73.945
    },
    zoom: 7,
    styles: [{
      featureType: 'administrative.province',
      elementType: 'geometry.stroke',
      stylers: [{
        visibility: '#off'
      }]
    }, ]
  });
  var layer = new google.maps.FusionTablesLayer({
    query: {
      select: 'kml_4326',
      from: '19lLpgsKdJRHL2O4fNmJ406ri9JtpIIk8a-AchA'
    },
    map: map
  });
}
html,
body,
#map {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}
<div id="map"></div>
<!-- Replace the value of the key parameter with your own API key. -->
<script async defer src="https://maps.googleapis.com/maps/api/js?callback=initMap"></script>