根据要素属性,使用外部按钮切换Google Maps API数据层要素

时间:2019-03-14 16:37:07

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

Google Maps API Data Layer - Dynamic Styling的文档说明了如何向功能添加事件侦听器,以便在单击该功能时可以更改其属性。

如何使用地图外部的按钮执行类似的操作?在小提琴示例中,如何通过单击“蓝色”按钮将地图上具有“蓝色”属性的字母变成蓝色?

Fiddle example

<!DOCTYPE html>
<html>
  <head>
    <title>Data Layer: Dynamic Styling</title>
    <meta name="viewport" content="initial-scale=1.0">
    <meta charset="utf-8">
    <style>#map {
    height: 500px;
  }
  </style>
  </head>
  <body>
<button id="blue-button">blue</button>
<button id="red-button">red</button>
<button id="green-button">green</button>
<button id="yellow-button">yellow</button>
<div id="map"></div>
    <script>

      var map;
      function initMap() {
        map = new google.maps.Map(document.getElementById('map'), {
          zoom: 4,
          center: {lat: -28, lng: 137}
        });

        // Load GeoJSON.
        map.data.loadGeoJson(
            'https://storage.googleapis.com/mapsdevsite/json/google.json');

        // Color each letter gray. Change the color when the isColorful property
        // is set to true.
        map.data.setStyle(function(feature) {

          var color = 'gray';

          if (feature.getProperty('isColorful')) {
            color = feature.getProperty('color');
            console.log(color)
          }

          return ({
            fillColor: color,
            strokeColor: color,
            strokeWeight: 2
          });

        });

        // When the user clicks, set 'isColorful', changing the color of the letters.
        map.data.addListener('click', function(event) {
          event.feature.setProperty('isColorful', true);
        });

      }
    </script>
    <script async defer
    src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB9BG3aO_hV9r8qaGkYmcE5eSx7c4K7be4&callback=initMap">
    </script>
  </body>
</html>

1 个答案:

答案 0 :(得分:1)

为按钮单击添加监听器。这可以通过不同的方式来完成。其中之一是使用Google地图addDomListener

然后,您必须遍历所有功能并设置适当的样式,例如:

var map;

function initMap() {

  map = new google.maps.Map(document.getElementById('map-canvas'), {
    zoom: 4,
    center: {
      lat: -28,
      lng: 137
    }
  });

  // Load GeoJSON.
  map.data.loadGeoJson(
    'https://storage.googleapis.com/mapsdevsite/json/google.json');

  // Color each letter gray. Change the color when the isColorful property
  // is set to true.
  map.data.setStyle(function(feature) {

    var color = 'gray';

    if (feature.getProperty('isColorful')) {
      color = feature.getProperty('color');
      console.log(color)
    }

    return ({
      fillColor: color,
      strokeColor: color,
      strokeWeight: 2
    });

  });

  // When the user clicks, set 'isColorful', changing the color of the letters.
  map.data.addListener('click', function(event) {
    event.feature.setProperty('isColorful', true);
  });

  google.maps.event.addDomListener(document.getElementById('blue-button'), 'click', function() {

    map.data.setStyle(function(feature) {

      if (feature.getProperty('color') == 'blue') {

        return ({
          fillColor: 'blue',
          strokeColor: 'blue',
          strokeWeight: 2
        });
      } else {

        return ({
          fillColor: 'grey',
          fillOpacity: .5,
          strokeColor: 'grey',
          strokeWeight: 2
        });
      }
    });
  });

}
#map-canvas {
  height: 160px;
}
<button id="blue-button">blue</button>
<div id="map-canvas"></div>

<!-- Replace the value of the key parameter with your own API key. -->
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCkUOdZ5y7hMm0yrcCQoCvLwzdM6M8s5qk&callback=initMap">
</script>