使用json将infoWindow添加到映射标记中

add infoWindow to map marker using json

本文关键字:映射 添加 json infoWindow 使用      更新时间:2024-03-06

我有一个简单的脚本,它在地图上添加了一个标记,数据取自json。我想为所有标记添加一个基本的infoWindow,这样当你点击它时,它就会显示"Cartier"。你能告诉我InfoWindow代码哪里出了问题吗?代码如下。

<!DOCTYPE html>
    <html>
    <head>
    <style>
    html, body, #map-canvas {
      margin: 0;
      padding: 0;
      height: 100%;
    }
    </style>
<script src="https://maps.googleapis.com/maps/api/js"></script>
<script>
var map;
function initialize() {
  var mapOptions = {
        zoom: 2,
        center: {lat: 37.275, lng: 22.549},
        mapTypeId: google.maps.MapTypeId.TERRAIN
      };
  map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
  // Create a <script> tag and set the USGS URL as the source.
  var script = document.createElement('script');
  script.src = 'http://pastebin.com/raw.php?i=7X956uB3';
  document.getElementsByTagName('head')[0].appendChild(script);
  map.data.setStyle(function(feature) {
    var jstores = feature.getProperty('jstores');
    return {
      icon: getCircle(jstores),
      title: (jstores)
    };
  });
  var contentString = '<div id="content">Cartier</div>';
  var infowindow = new google.maps.InfoWindow({
        content: contentString
      });
  google.maps.event.addListener(marker, 'click', function() {
    infowindow.open(map,marker);
  });
}
function getCircle(jstores) {
  var circle = {
        path: google.maps.SymbolPath.CIRCLE,
        fillColor: 'red',
        fillOpacity: .2,
        scale: Math.sqrt(jstores) * 2,
        strokeColor: 'white',
        strokeWeight: .5
      };
  return circle;
}
function jewellery_stores(results) {
  map.data.addGeoJson(results);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
 <body>
   <div id="map-canvas"></div>
 </body>
</html>

示例JSON:

jewellery_stores({ "type": "FeatureCollection","features": [
{"type": "Feature","geometry": {"type": "Point", "coordinates": [139.730407, 35.70883]},"properties": {"jstores": 106 }},
{"type": "Feature","geometry": {"type": "Point", "coordinates": [37.615556, 55.752222]},"properties": {"jstores": 94 }},
{"type": "Feature","geometry": {"type": "Point", "coordinates": [2.3524282, 48.8564528]},"properties": {"jstores": 89 }},
{"type": "Feature","geometry": {"type": "Point", "coordinates": [55.277067, 25.176594]},"properties": {"jstores": 66 }},
{"type": "Feature","geometry": {"type": "Point", "coordinates": [-0.1276597, 51.5072759]},"properties": {"jstores": 64 }},
{"type": "Feature","geometry": {"type": "Point", "coordinates": [114.169551, 22.285261]},"properties": {"jstores": 63 }}]

提前感谢您,Andrey

您正在使用Google Maps Javascript API v3 Data Layer

它支持点击监听器,允许您打开包含JSON中属性的信息窗口。

map.data.addListener('click', function (e) {
    infowindow.setPosition(e.latLng);
    infowindow.setContent("hello world<br>jstores="+e.feature.getProperty("jstores")+"<br>"+e.latLng.toUrlValue(6));
    infowindow.open(map);
});

工作代码片段:

var map;
var infowindow = new google.maps.InfoWindow({});
function initialize() {
  var mapOptions = {
    zoom: 2,
    center: {
      lat: 37.275,
      lng: 22.549
    },
    mapTypeId: google.maps.MapTypeId.TERRAIN
  };
  map = new google.maps.Map(document.getElementById('map-canvas'),
    mapOptions);
  // Create a <script> tag and set the USGS URL as the source.
  var script = document.createElement('script');
  script.src = 'https://pastebin.com/raw.php?i=7X956uB3';
  document.getElementsByTagName('head')[0].appendChild(script);
  map.data.setStyle(function(feature) {
    var jstores = feature.getProperty('jstores');
    return {
      icon: getCircle(jstores),
      title: (jstores)
    };
  });
}
function getCircle(jstores) {
  var circle = {
    path: google.maps.SymbolPath.CIRCLE,
    fillColor: 'red',
    fillOpacity: 0.2,
    scale: Math.sqrt(jstores) * 2,
    strokeColor: 'white',
    strokeWeight: 0.5
  };
  return circle;
}
function jewellery_stores(results) {
  map.data.addGeoJson(results);
  map.data.addListener('click', function(e) {
    infowindow.setPosition(e.latLng);
    infowindow.setContent("hello world<br>jstores=" + e.feature.getProperty("jstores") + "<br>" + e.latLng.toUrlValue(6));
    infowindow.open(map);
  });
}
google.maps.event.addDomListener(window, 'load', initialize);
html,
  body,
  #map-canvas {
    margin: 0;
    padding: 0;
    height: 100%;
  }
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCkUOdZ5y7hMm0yrcCQoCvLwzdM6M8s5qk"></script>
<div id="map-canvas"></div>