javascript - Google Maps: Change infoWindow's Frame -


I have created a marker and added a listener on this marker which opens an info window. My problem is that I can not understand how to change the default frame of information. Is it possible? Here is my code:

  var marker page = new google.maps.LatLng (lat, lng); Var shopMarker = new google.maps.marker ({position: markerPosition, map: map, icon: iconshop, title: "shop", dragable: incorrect}); Var content = '& lt; Ul class = "shopmaplist" & gt; & Lt; Li & gt; Text & lt; / Li & gt; '+' & Lt; Li & gt; & Lt; Period & gt; Read & lt; / Span & gt; Text & lt; / Li & gt; ' + '& Lt; / Ul & gt; & Lt; Ul class = "shoplistel" & gt; Text & lt; / Ul & gt; & Lt; / Br & gt; + '& Lt; Div class = "buttonShop" & gt; Input type = "submit" class = "btn continue" value = "text" tabindex = "3" & gt; & Lt; / Div & gt; '; Var infowindow = new google.maps.InfoWindow (); Google.maps.event.addListener (Shop Manager, 'Click', (Function (Shopmark, Content, Infondo) {Return Function () {INFO.support Content (Content), InfoOndo. Open (Map, Shopmark);}}} ) ShopMarker, content, infowindow));  

In this code, what can I do to customize the information of the window's frame and generally the style?

Edit: Below is the image result I want when I click on the marker.

Enter image details here

< Div class = "post-text" itemprop = "text">

You can not change one. You can use "third party" infwondo replacement or create your own


Comments

Popular posts from this blog

sqlite3 - UPDATE a table from the SELECT of another one -

c# - Showing a SelectedItem's Property -

javascript - Render HTML after each iteration in loop -