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.
Infobox を使用せずに Infowindow のスタイルを設定する簡単な方法はありますか? マージン/パディングを減らすだけです。
ありがとう、
[サイモン.cpu]
シンプルで、コンテンツの余白を設定します。Chrome 開発者コンソールでは、div を検査し、必要に応じて余白を設定して、重要としてマークすることができます。そのようです、
<div id="INFOWINDOW" style="margin-bottom:-1% !important;">Info Window Content</div>
すべての辺から余白を減らしたい場合は、margin-bottomをmarginに置き換えるだけで、設定した値だけすべての辺から余白が減ります。
お役に立てれば。