Look at your styles - you have 2 conflicting ones. You set: featureType: "all", elementType: "labels"
But then later you set featureType: "water", elementType: "all", Which also applies to water labels - so you are setting the labels and the geometer to the same color. Change the last one to elementType: "geometry" Also, are you using the styled map wizard? http://gmaps-samples-v3.googlecode.com/svn/trunk/styledmaps/wizard/index.html You should be able to get all of your styles set there and then copy the code. Chad Killingsworth On Oct 4, 7:23 am, Niklasro <[email protected]> wrote: > On Oct 4, 12:08 pm, Chad Killingsworth > > > > > > > > <[email protected]> wrote: > > Niklas: You've got so many threads on this same basic topic that we > > are all reeling with post overload. You are also continually posting > > your code instead of a link to your map - read the posting > > guidelines:http://groups.google.com/group/google-maps-js-api-v3/browse_thread/th... > > > Post your actual map online somewhere (not screenshots!) and come > > back. Also, try to keep all of the posts related to your map in a > > single thread. We're willing to help you with technical problems, but > > we won't do the work for you. And when it comes to styling a map, > > there is just a lot of fiddling around to get the effect you want. > > It's just part of the process. > > > Chad Killingsworth > > > On Oct 4, 12:52 am, Niklasro <[email protected]> wrote: > > > > Continued at > > > stackoverflowhttp://stackoverflow.com/questions/3844457/styling-my-gmap > > > Sure no comments here? > > > Thanks anyways > > > Niklas > > It's appspot hostedhttp://classifiedsmarket.appspot.com/ > Trying basic (if it's basic, where's an example?) coloring water > labels > { > featureType: "water", > elementType: "labels", > stylers: [ > { hue: "#0022ff" }, > { saturation: 50 }, > { lightness: -10 }, > { gamma: 0.9 } > ] > }, -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.
