最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Google Maps API v3 MapTypeId as variable - Stack Overflow

programmeradmin0浏览0评论

When setting the google map type:

map.setMapTypeId(google.maps.MapTypeId.TERRAIN);

Can I replace "TERRAIN" by a js variable containing the string "TERRAIN", "SATELLITE", etc?

When setting the google map type:

map.setMapTypeId(google.maps.MapTypeId.TERRAIN);

Can I replace "TERRAIN" by a js variable containing the string "TERRAIN", "SATELLITE", etc?

Share Improve this question asked Aug 2, 2012 at 0:15 MrUpsidownMrUpsidown 22.5k15 gold badges83 silver badges141 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 9

Yes, call it like this:

var mapType = "TERRAIN";
map.setMapTypeId(google.maps.MapTypeId[mapType]);
//Console output of MapTypeId
google.maps.MapTypeId
{ROADMAP: "roadmap", SATELLITE: "satellite", HYBRID: "hybrid", TERRAIN:"terrain"}
HYBRID:"hybrid"
ROADMAP:"roadmap"
SATELLITE:"satellite"
TERRAIN:"terrain"


//change mapTypeId
map.setMapTypeId("terrain"); //example with hybrid
//or
map.setMapTypeId(google.maps.MapTypeId.TERRAIN); // same example with hybrid
//or as you want
map.setMapTypeId(google.maps.MapTypeId["TERRAIN"]); // same example with hybrid
发布评论

评论列表(0)

  1. 暂无评论