this map type is called Relief not terrain, take a look at my page
youspots.com, we have such a layer and you can create it like this:

 var reliefMap = new google.maps.ImageMapType({
    getTileUrl: function(a, b) {
      return "http://maps-for-free.com/layer/relief/z"; + b + "/row" +
a.y + "/" + b +
     "_" + a.x + "-" + a.y + ".jpg"; },
    tileSize: new google.maps.Size(256, 256),
    isPng: false,
    minZoom: 0,
    maxZoom: 11,
    name: "Relief",
    alt: "Relief layer"
  });

to enable the layer in a custom control do something like this:

map.mapTypes.set("relief", reliefMap);
map.setMapTypeId('relief');


On 19 Aug., 00:51, Niklas Rosencrantz <[email protected]> wrote:
> <https://lh5.googleusercontent.com/-9Yu9Pua-adA/Tk2WtJH7T-I/AAAAAAAAA7...>
> The link to my map is montao.com.br is the map I want to make dynamic is
> attached with this message. I could mape a styled map but some features were
> undoable such as remove other countries than Brazil, the red dots for the
> city but recently it says the API was updated and now it's possible to add
> terrain to the custom map but I can't find a reference how to do it. If you
> follow the link you map the map and the javascript and maybe you know how to
> do it? Thank you /Niklas R

-- 
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.

Reply via email to