Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
矢印とマーカー付きのポリラインがあります。ズームが 10 以上のときにその線を表示するにはどうすればよいですか?
ズーム レベルに応じてポリラインを非表示/表示するズーム リスナーを登録します。
google.maps.event.addListener(map, 'zoom_changed', function() { if (map.getZoom()>=10) polyline.setMap(map); else polyline.setMap(null); });