href ='http://maps.google.com/maps?q=32.546750000000000、-116.947848333333000'を使用してアンカータグを出力する最も簡単な方法
最善の方法は、Google Maps APIの使用方法を学び、地図上の適切な場所にマーカーを作成することです。
簡単な例:
<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?sensor=false">
</script>
<style type="text/css">
#map_canvas { height: 100%; }
@media print {
html, body { height: auto; }
#map_canvas { height: 650px; }
}
</style>
<script type="text/javascript">
function initialize() {
var myLatlng =
new google.maps.LatLng(32.546750000000000, -116.947848333333000);
var myOptions = {
zoom: 4,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(
document.getElementById("map_canvas"), myOptions);
var marker = new google.maps.Marker({
position: myLatLng,
map: map,
title: "Hello World!"
});
}
if (window.addEventListener) { // W3C standard
window.addEventListener('load', initialize, false); // NB **not** 'onload'
}
else if (window.attachEvent) { // Microsoft
window.attachEvent('onload', initialize);
}
</script>
<div id="map_canvas" style="height: 400px; width: 800px;"></div>