Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using the Google Maps API and would like it to render a very simple image of countries/continents.

I also want to draw them in a suitable color that will work well with my site's color scheme.

Would I need to create my own tile-server? Or can I customize this somehow through the API?

share|improve this question
5  
take a look at the Google Maps Color wizard: gmaps-samples-v3.googlecode.com/svn/trunk/styledmaps/wizard/… – meo Jun 27 '11 at 9:37
Thought the question was in context with using Flex and flash My bad, ILog elixr is for flash – pshirishreddy Sep 14 '11 at 6:40

6 Answers

Google recently announced support for Styled Maps in the Google Maps API. You can extensively customize the color scheme used by Google Maps.

share|improve this answer

It is possible now with the Google maps V3 API. It comes as a custom map style.

Google made a style wizard: http://gmaps-samples-v3.googlecode.com/svn/trunk/styledmaps/wizard/index.html

share|improve this answer
Any idea why we can no longer enter a color value in the box next to Hue? – Neil Apr 13 '12 at 9:51
@Neil no idea, just edit the json result at the end... – meo Apr 25 '12 at 23:27

Google Maps API v3. Working jsFiddle:

jsFiddle ---------------------------------------> http://jsfiddle.net/SQvej/

styles:[
    { featureType: "water", stylers: [ { hue: "#F4B741"} ] },
    { featureType: "road", stylers: [ { hue: "#ff0000" } ] }
]

Less words, more fiddles: http://24.media.tumblr.com/tumblr_m0i1emsdP31qaebp2o1_400.gif

share|improve this answer
I agree less words, more fiddles. Don't suppose you know how to add geo location to this fiddle and center map on current location? Thanks – Joshc Jun 20 '12 at 9:39

No, when using the Google Maps API, you cannot change the maps themselves in any way. What you can customize, though, are the icons, logos, etc that you use.

EDIT: Google has since release the Styled Maps API, which will probably give you exactly what you want. Take a look at the wizard to get started quickly.

share|improve this answer

I don't think you can customise this through the Google Maps API. However, the Google Chart API has a map chart type that has customisable colours.

You might also want to investigate OpenLayers, which is an open source web-based mapping engine.

share|improve this answer

I recently stumbled over this: http://cloudmade.com/products/style-editor They have a complete color editor an lot's of API stuff.

I didn't found something about pricing. But you can have a look into the editior here: http://maps.cloudmade.com/editor/

share|improve this answer

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.