2

Geo-mashup wp プラグイン マップの googlemap infowindow から右と下の余白を削除する必要があります。

geo-mashup-custom プラグイン アドオンをインストールし、custom-googlev3.js というファイルを作成して、次のコードを挿入しました。

GeoMashup.addAction( 'loadedMap', function ( properties, map ) {

google.maps.Event.addListener(infowindow, 'domready', function() {

   /* The DIV we want to change is above the .gm-style-iw DIV.
    * target the div through .gm-style-iw and .prev().
    */
   var iwBackground = jQuery('.gm-style-iw').prev();

   // Remove the background shadow DIV
   iwBackground.children(':nth-child(2)').css({'display' : 'none'});

   // Remove the white background DIV
   iwBackground.children(':nth-child(4)').css({'display' : 'none'});

   });
});

ここのガイドから上記のコードを見つけました: http://en.marnoto.com/2014/09/5-formas-de-personalizar-infowindow.htmlしかし、geomasp で提供されるコードを使用できません。私が見つけた他の投稿からの解決策をいじって実装しようとしましたが、うまくいきません。

どんな助けでも本当に感謝しています。

4

0 に答える 0