0
私はGoogle Map v2を使用しています。私はズームインとズームアウトボタンも取り除きたいと思っています。マップビューを含まない他のすべてのビューを無効にするGmap2
誰かが私が次に追加する必要があることが分かっていれば、それはすばらしいでしょう。
function stores()
{
$('#storelist ul#stores').html("");
fetch(203,"task=location&location=vic");
map = new GMap2(document.getElementById("map_canvas"));
map.setCenter(new GLatLng(-37.810013, 144.962683), 8);
map.setUIToDefault();
yellowIcon.image = "http://gmaps-samples.googlecode.com/svn/trunk/markers/orange/blank.png";
markerOptions = { icon:yellowIcon };
}
あなたは本当にGoogle Maps APIのV3に移行することを考えてください。廃止予定のAPIを使用しています。 – andresf