Google マップと Bing マップはクライアント側 (JavaScript を利用) であるため、そのための PHP ライブラリはありません。
興味のある場所を地図上に表示するには、データベースから項目を取得し、JavaScript を使用してそれらを地図に追加します。Google マップでは、これは次のようになります。
// instantiate the map
var map = new google.maps.Map(document.getElementById('map'), {
center: new google.maps.LatLng(54.673830, -4.746093),
mapTypeId: google.maps.MapTypeId.ROADMAP,
zoom: 8
});
// create an InfoWindow
var infowindow = new google.maps.InfoWindow();
// fetch results from a PHP script
// assumes results are returned as a JSON-encoded array
$.getJSON('script.php', function(results) {
$.each(results, function(i, result) {
// create a market representing place of interest
var marker = new google.maps.Marker({
map: map,
position: new google.maps.LatLng(result.latitude, result.longitude);
title: result.title
});
// display information in infowindow on click
google.maps.event.addListener(marker, 'click', function() {
infowindow.setContent(result.content);
infowindow.open(map, marker);
});
});
});
うまくいけば、これで始めることができます。Google Maps JavaScript APIのドキュメントを確認してください。APIの包括的なガイドと多数のサンプルが含まれています。