Google Maps API V3 を使用して Circle オブジェクトを作成し、次に bindTo() を使用してそれをマーカーの位置に関連付けます (両方とも google.maps.MVCObject インスタンスであるため)。
// Create marker
var marker = new google.maps.Marker({
map: map,
position: new google.maps.LatLng(53, -2.5),
title: 'Some location'
});
// Add circle overlay and bind to marker
var circle = new google.maps.Circle({
map: map,
radius: 16093, // 10 miles in metres
fillColor: '#AA0000'
});
circle.bindTo('center', marker, 'position');
fillColor、strokeColor、strokeWeight などを変更することで、Google Latitude の円のように見せることができます ( full API )。
その他のソース コードとスクリーンショットの例を参照してください。