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.
Google Maps Mashupを作成していますが、いずれかのマーカーのz-indexを大きくして、誰かがズームアウトして表示できるようにしたいと考えています。
http://startupsradar.com/
常に赤いマーカーを上に表示したい。
マーカーのデフォルトのzIndexは何ですか?
マーカーのzIndexの値は、最大google.maps.Marker.MAX_ZINDEXまで可能です。したがって、マーカーを何よりも優先する場合は、zIndexを(google.maps.Marker.MAX_ZINDEX + 1)として設定します。例: marker.setZIndex(google.maps.Marker.MAX_ZINDEX + 1);