I just came across http://fwix.com/

I really like how they create the InfoWindow (popup) when you click on a map marker because the corners on their InfoWindow are not as round as the default InfoWindow corners.

Question: How do they create their InfoWindow so square, which I like, because the default Google Maps InfoWindow for a map marker is very round.

UPDATE:

Here is a screenshot of what I'm talking about:

example

link|improve this question
I updated my answer with a link to something that looks quite customisable. You can choose your own radius and other settings. – Drew Noakes Oct 7 '10 at 21:44
feedback

6 Answers

EDIT After some hunting around, this seems to be the best option:

http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobubble/examples/example.html

You can see a customised version of this InfoBubble that I used on Dive Seven, a website for online scuba dive logging. It looks like this:


Google provide a demo that shows how to implement a custom info window. It requires a fair amount of code, but seems to be pretty straightforward.


There are some more examples using the Google Maps Utility Library (v3) Styled Marker extension. They definitely don't look as nice as the example in your screenshot, however.

link|improve this answer
feedback

For people still trying to achieve this, I just implemented this using the InfoBox class provided by google that you can find here. It basically extends the infoWindow class allowing for more customization and styling.

Check out their basic example here.

Cheers!

link|improve this answer
That is pretty ugly. – bart Mar 22 at 8:13
feedback

I'm not sure how FWIX.com is doing it specifically, but I'd wager they are using Custom Overlays.

link|improve this answer
Does a Custom OVerlay have all the same properties as a normal google map marker? Meaning, I can still do setIcon, setZIndex, etc with a Custom Overlay OR do I have to re-implement all of that functionality? – SarahBeale Oct 5 '10 at 3:57
feedback

you can take a look at this http://gmaps-samples-v3.googlecode.com/svn/trunk/infowindow_custom/infobox.js

and just massage it to fit your needs

link|improve this answer
feedback

I found InfoBox perfect for advanced styling.

An InfoBox behaves like a google.maps.InfoWindow, but it supports several additional properties for advanced styling. An InfoBox can also be used as a map label. An InfoBox also fires the same events as a google.maps.InfoWindow.

Include http://code.google.com/p/google-maps-utility-library-v3/source/browse/trunk/infobox/src/infobox.js in your page

Then use this an exmaple : http://google-maps-utility-library-v3.googlecode.com/svn/tags/infobox/1.1.5/docs/examples.html

link|improve this answer
feedback

You can even append your own css class on the popup container/canvas or how do you want. Current google maps 3.7 has popups styled by canvas element which prepends popup div container in code. So at googlemaps 3.7 You can get into rendering process by popup's domready event like this:

var popup = new google.maps.InfoWindow();
google.maps.event.addListener(popup, 'domready', function() {
  if (this.content && this.content.parentNode && this.content.parentNode.parentNode) {
    if (this.content.parentNode.parentNode.previousElementSibling) {
      this.content.parentNode.parentNode.previousElementSibling.className = 'my-custom-popup-container-css-classname';
    }
  }
});

element.previousElementSibling is not present at IE8- so if you want to make it work at it, follow this.

check InfoWindow reference for events and more..

I found this most clean in some cases.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.