搜索标记信息框

时间:2012-10-04 14:56:33

标签: google-maps search google-maps-api-3 marker

map API是否有可能从信息框中搜索信息,例如标记信息框?

我的信息框显示一些文字信息。我只是想搜索这个文本,并在地图上只显示有我正在寻找的文字的标记。希望这更清楚。

2 个答案:

答案 0 :(得分:1)

这就是你要找的东西

//Build html for Infowindow
      var html = "<b> Text </b> <br>;
      html = html + "<input type=\"text\" id=\"addressInput\" size=\"10\"/>;
      html = html + "<select id=\"radiusSelect\">";
      html = html + "<option value=\"25\" selected>25mi</option>";
      html = html + "<option value=\"100\">100mi</option>";
      html = html + "<option value=\"200\">200mi</option>";
      html = html + "</select>";
      html = html + "<br/><button onclick='doIt()'>Do It</button>";
      var marker = new google.maps.Marker({
       map: map,
        position: point,
      });
      //marker array to allow clearin markers
       markerArray.push(marker);
       bindInfoWindow(marker, map, infoWindow, html);

答案 1 :(得分:0)

我找不到任何google方法来执行此操作我只是将我的信息窗口副本放入数组并改为搜索数组内容。