Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to make echo work inside 'content' of jquery,in google maps infowindow
    text
    copied!<p>i'm here with a new problem,i want to echo the variable from php inside the content of infowindow,any suggestions?</p> <p>Here is my code,Inside the infowindow content i have used some html code,that i have to replace with php variables. for Eg:deviceid1 should be replaced with value from database</p> <pre><code> var trieste = new google.maps.LatLng(45.6111555,13.8022614); var mapOptions = { zoom: 12, center: trieste, mapTypeId: google.maps.MapTypeId.ROADMAP } var map = new google.maps.Map($("#map_canvas")[0], mapOptions); var places = [ { "position": [45.6466883,13.7631226] }, { "position": [45.6433281,13.7895584] }, { "position": [45.6017884,13.6673355] }, { "position": [45.622442,13.7641525] } ] var currentPlace = null; var icons=["green.png","red.png","blue.png","yellow.png"]; var i=0; $(places).each(function() { var place = this; var marker = new google.maps.Marker({ position: new google.maps.LatLng(place.position[0], place.position[1],place.position[2],place.position[3]), map : map, icon : icons[i] }); if(i==0) { var infowindow = new google.maps.InfoWindow({ content: '&lt;ul&gt;&lt;li&gt;Device ID1&lt;/li&gt;&lt;li&gt;Device configuration1&lt;/li&gt;&lt;li&gt;Device Description1&lt;/li&gt;&lt;/ul&gt;&lt;a href="riacqua/activepanel.php"&gt;Goto RIACQUA&lt;/a&gt;' }); google.maps.event.addListener(marker, 'mouseover', function() { infowindow.open(map, marker); }); google.maps.event.addListener(marker, 'mouseout', function() { infowindow.close(); }); } </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload