Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm wondering if it is possible to display Google Maps in black/white or with a sepia filter. Can it be done with some Canvas magic? Or overlaying? Or some other method?

share|improve this question

3 Answers

up vote 10 down vote accepted

Yes you can use styled maps feature of google api.

Here is an example http://blog.programmableweb.com/2010/05/20/make-your-google-map-stand-out-with-styles/

Here are the docs http://code.google.com/apis/maps/documentation/javascript/maptypes.html#StyledMaps

and here is a WYSIWYG wizard to recolor your map http://gmaps-samples-v3.googlecode.com/svn/trunk/styledmaps/wizard/index.html

share|improve this answer
thanks, now just needed to make saturation -100! – Sonne Jul 6 '11 at 7:48

http://www.nihilogic.dk/labs/imagefx/ brings a sepia and a desaturate (black and white) filter... But it wont work in Safari and IE can only desaturate, no sepia

share|improve this answer

I have this link in my history. Someone has done it in flash http://www.anttikupila.com/GoogleMapsBw/1

EDIT: After considering your idea, I also found this example I like it and you may be able to attach a listener to alter the images as they are loaded. but it may not work smoothly.

share|improve this answer
Thanks, but its flash. I wanted to make it with JS / HTML5. Will try the your tip with JS on the weekend – Sonne Jul 6 '11 at 7:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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