顧客が簡単に私を見つけられるように、ホームページに Google マップを含めました。私の問題は、次のような道順リンクを含める方法が見つからなかったことです。
私のコード:
jQuery(document).ready(function(){
var myLatlng = new google.maps.LatLng(48.562944, 16.079245);
var myOptions = {
center: myLatlng,
zoom: 16,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map"), myOptions);
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title:"Mehr Informationen!"
});
var infowindow = new google.maps.InfoWindow({});
google.maps.event.addListener(marker, 'click', function() {
infowindow.setContent("<b>Company</b><br>Street<br>Town"); //sets the content of your global infowindow to string "Tests: "
infowindow.open(map,marker); //then opens the infowindow at the marker
});
marker.setMap(map);
});
私は経験の浅いユーザーで、学習して理解しようとしています。私はあなたが私の問題を解決するのを手伝ってくれることを願っています.