Skip to content

Latest commit

 

History

History
57 lines (39 loc) · 1.39 KB

File metadata and controls

57 lines (39 loc) · 1.39 KB

⚠️ This document is aim for older versions (from 2.3.0 to 2.5.3). Document for new version is https://github.com/mapsplugin/cordova-plugin-googlemaps-doc/blob/master/v2.6.0/README.md

htmlInfoWindow.setContent(content)

You can change the content of the html info window.

You can set HTML strings or HTML element.

htmlInfoWindow.setContent(color);

Parameters

name type description
content string,node text, HTML strings, or HTML element

Demo code

<div id="map_canvas"></div>
var div = document.getElementById("map_canvas");
var map = plugin.google.maps.Map.getMap(div);

var htmlInfoWindow = new plugin.google.maps.HtmlInfoWindow();

var button = document.createElement("button");
button.innerText = "Click me!";
button.addEventListener("click", function() {
  var html = "<img src='./House-icon.png' width='64' height='64' >" +
             "<br>" +
             "Ta-da!";
  htmlInfoWindow.setContent(html);
});

htmlInfoWindow.setContent(button);

var marker = map.addMarker({
  position: {lat: 0, lng: 0}
});

marker.on(plugin.google.maps.event.MARKER_CLICK, function() {
  htmlInfoWindow.open(marker);
});

marker.trigger(plugin.google.maps.event.MARKER_CLICK);