0

私は Google Maps Dev を始めたばかりで、あなたの助けが必要です。Google マップ エンジンを使用して CSV ファイルからデータを読み込み、住所を自動的にジオコーディングするのに役立ちます。新しいレイヤーを作成してマップ上に配置した後、マップ アプリケーション (JSv3 API) で Map と LayerID を呼び出しています。マーカーをクリックすると情報ウィンドウがポップアップし、情報ウィンドウに方向 (機能) のリンクが必要です。一般的な Google マップ検索のように、情報ウィンドウにルート サービスを表示する方法はありますか。私のコードは次のようになります。

<script type="text/javascript"
  src="https://maps.googleapis.com/maps/api/js?key=###############">
</script>
<script type="text/javascript"src="http://maps.googleapis.com/maps/api/js?libraries=visualization&key=##############"></script><script type="text/javascript">``function initialize(){var mapOptions={zoom: 5,center:new google.maps.LatLng(42, -99)};

    map = new google.maps.Map(document.getElementById('map-canvas'),
    mapOptions);
    var mapsLayer = new google.maps.visualization.MapsEngineLayer({
    mapId: '131467379863959',
    layerKey: 'layer_00001',
    map: map,
 suppressInfoWindows: false,
 clickable: true

});
 var mapsLayer2 = new google.maps.visualization.MapsEngineLayer({
 mapId: '13146737986395',
 layerKey: 'layer_00002',
 map: map,
 suppressInfoWindows: false,
 clickable: true});}


 google.maps.event.addDomListener(window, 'load', initialize);
 </script>
4

1 に答える 1