-3
私は2つの会社の情報ウィンドウで2つの異なるGoogleマップを埋め込む方法を知りたいと思います。 this is sample one, i want two different maps。 2つの異なるマップが必要です。 同じマップ内に2つの情報ウィンドウがありません。2つのGoogleマップを作成するには
ありがとうございました。
私は2つの会社の情報ウィンドウで2つの異なるGoogleマップを埋め込む方法を知りたいと思います。 this is sample one, i want two different maps。 2つの異なるマップが必要です。 同じマップ内に2つの情報ウィンドウがありません。2つのGoogleマップを作成するには
ありがとうございました。
入れて2つのあなたのhtmlでdivタグの代わりに、1:
...
<div id="map1"></div>
<div id="map2"></div>
...
は、その後、両方のマップを作成するためにJavaScriptコードを追加します。
function initMap(mapName, lat, lng, title, content) {
var map = new google.maps.Map(document.getElementById(mapName), {
zoom: 4,
center: {lat: lat, lng: lng}
});
var infowindow = new google.maps.InfoWindow({
content: content
});
var marker = new google.maps.Marker({
position: coords,
map: map,
title: title
});
marker.addListener('click', function() {
infowindow.open(map, marker);
});
}
var contentUrulu = '<div id="content">'+
'<div id="siteNotice">'+
'</div>'+
'<h1 id="firstHeading" class="firstHeading">Uluru</h1>'+
'<div id="bodyContent">'+
'<p><b>Uluru</b>, also referred to as <b>Ayers Rock</b>, is a large ' +
'sandstone rock formation in the southern part of the '+
'Northern Territory, central Australia. It lies 335 km (208 mi) '+
'south west of the nearest large town, Alice Springs; 450 km '+
'(280 mi) by road. Kata Tjuta and Uluru are the two major '+
'features of the Uluru - Kata Tjuta National Park. Uluru is '+
'sacred to the Pitjantjatjara and Yankunytjatjara, the '+
'Aboriginal people of the area. It has many springs, waterholes, '+
'rock caves and ancient paintings. Uluru is listed as a World '+
'Heritage Site.</p>'+
'<p>Attribution: Uluru, <a href="https://en.wikipedia.org/w/index.php?title=Uluru&oldid=297882194">'+
'https://en.wikipedia.org/w/index.php?title=Uluru</a> '+
'(last visited June 22, 2009).</p>'+
'</div>'+
'</div>';
var
contentWhatever = '...';
initMap('map1', -25.363, 131.044, 'Uluru (Ayers Rock)', contentUrulu);
initMap('map2', 46.106,7.049, 'Whatever', contentWhatever);
いくつかのコード –
関連する質問を書き込むためにはJavaScriptを使用してみてください:[二(http://stackoverflow.com/questions/15881693/two-styled-google-maps-on-single-page) – geocodezip
[API V3で1ページに複数のGoogleマップを表示する方法](http://stackoverflow.com/questions/4074520/how-to-display-multiple-google-maps-per-pa ge-with-api-v3) – geocodezip