Is it possible to customize the color scheme of a Google Map?

后端 未结 8 1226
旧时难觅i
旧时难觅i 2020-12-05 02:18

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

8条回答
  •  执念已碎
    2020-12-05 03:03

    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

提交回复
热议问题