-2

マップ API には、マーカー インフォボックスなどの情報ボックス内から情報を検索する機能がありますか?

私のインフォボックスにはテキスト情報が表示されます。このテキストを検索して、探しているテキストを含むマーカーのみをマップに表示したいだけです。これがより明確であることを願っています。

4

2 に答える 2

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);
于 2012-10-04T15:16:06.667 に答える
0

それを行うための Google メソッドが見つかりませんでした。情報ウィンドウのコピーを配列に入れ、代わりに配列の内容を検索しました。

于 2013-05-13T10:07:56.793 に答える