マップ上に2つの異なる場所を同時に表示したい場合は、現在の場所と他の場所が別の場所です。私は、javascript V3バージョンを使用します。これは、1つの場所を表示するための私のコードです。GoogleマップAPI V3 - 同じ地図上にマーカーを持つ2つの場所
var pos = new google.maps.LatLng(latitude, longitude);
window.localStorage.setItem("event_location",pos);
if (!google) {
loadScript();
}
var pos1 = window.localStorage.getItem("current_location");
alert('position '+pos1);
var myOptions = {
center : pos,
zoom : 8,
mapTypeId : google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
var contentString = '<div id="content">'+
'<div id="siteNotice">'+
'</div>'+
'<h4 id="firstHeading" class="firstHeading">'+add+'</h4> ' +
'<div id="bodyContent">'+
'<p>Meeting with'+'<b> '+ personName + '</b>, <br/>on ' +
'<b>'+startDate+'</b> at ' +
'<b>'+startTime+'</b>' +
'</div>'+
'</div>';
var infowindow = new google.maps.InfoWindow({
content: contentString
});
var marker = new google.maps.Marker({
position: pos,
map: map,
title:"Event Location!"
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map,marker);
});
pos1は私の2番目の場所で、現在の電話帳の方法で計算されます。私を助けてください。
場所の保存方法を示してください。私は 'pos1'の値は何になりますか?文字列 ? – Diode
IF(navigator.geolocation){ \t \t navigator.geolocation.getCurrentPosition(関数成功(位置){ \t \t \t \t \t \t VAR位置=新しいgoogle.maps.LatLng(position.coords.latitude、 \t \t \t \t \t \t position.coords.longitude); \t \t \t window.localStorage.setItem( "CURRENT_LOCATION" 位置); \t \t }); \t \t} else { \t \tアラート( 'geolocation not supported'); \t \t} pos1は位置です。 – upender