googleAPIを使ってカスタムフィールド値より取得した住所から座標を取得し
-
いつもお世話になっております。
標題のとおり、
googleAPIを使ってカスタムフィールド値より取得した住所から座標を取得し、
ピンを刺したいのですが、やり方が少し分からないです、、、参考にさせて頂いたサイトだと、カスタムフィールド値に設定した住所を抜き出して
googleMapを表示するまで書いてあるのですが、参考URL:http://kachibito.net/wordpress/display-google-map-using-cf.html
ピンの設定方法まで記載されておらず、
おおざっぱに表示されてしまいます、、、ソースコードは以下のとおり記述しております
<script type=”text/javascript”>var g = new google.maps.Geocoder(),
map, center ;
g.geocode({
‘address’: ‘<?php echo $gmap; ?>’
}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
center = results[0].geometry.location;
initialize();
}
});function initialize() {
var options = {
center: center,
zoom: 17,
mapTypeId: google.maps.MapTypeId.ROADMAP,
scrollwheel: true,
panControlOptions: {
position: google.maps.ControlPosition.TOP_RIGHT
},
zoomControlOptions: {
position: google.maps.ControlPosition.TOP_RIGHT
},
mapTypeControlOptions: {
position: google.maps.ControlPosition.TOP_CENTER
},
};
map = new google.maps.Map(document.getElementById(‘googlemap’), options);
}
function load() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById(“map”));
map.setCenter(new GLatLng(35.658613,139.745525), 17);
}
}
</script>分かる方いらっしゃいましたら是非ご教授お願いします。
- トピック「googleAPIを使ってカスタムフィールド値より取得した住所から座標を取得し」には新たに返信することはできません。