I am trying to make a google map in my maps. What is the html code of the pop up window from the teardrop that would allow you to have the picture next to the text. It is currently what google uses now for all their pop ups.
Google Maps is not written in HTML. It relies on technologies like Javascript (AJAX, specifically, please correct me if I am wrong) among other languages. I am not an expert on Google Maps or other Google applications, but this website, hosted by Google, should help you in setting up an embedded Map on your website: http://maps.google.com/help/maps/getmaps/ I apologize for not including an active link that you can click, I'm new and not permitted to include links, yet.
When you are making your mpa in my maps you can put your content in the pop up in html and that is what I am referring to.
var map = new GMap2(document.getElementById("map_canvas")); map.setCenter(new GLatLng(37.4419, -122.1419), 13); map.openInfoWindow(map.getCenter(), document.createTextNode("Hello, world")); Code (markup):