我在我的网站上使用gmap 3,但我想要卫星地图
这是我的gmap 3激活..
$('.map')
.gmap3({
center:[37.7638886, -122.4563572],
zoom:14,
scrollwheel: false,
mapTypeControl: false,
streetViewControl: false,
mapTypeId: "shadeOfGrey", // to select it directly
mapTypeControlOptions: {
mapTypeIds: [google.maps.MapTypeId.ROADMAP, "shadeOfGrey"]
}
})
答案 0 :(得分:0)
您应该使用satellite
的值作为mapTypeId
对象中的MapOptions
字段:
$('.map')
.gmap3({
center:[37.7638886, -122.4563572],
zoom:14,
scrollwheel: false,
mapTypeControl: false,
streetViewControl: false,
mapTypeId: "satellite"
})
答案 1 :(得分:-1)
它为我工作
// satellite map active
$('.map_se')
.gmap3({
center:[40.748817, -73.985428],
zoom:3,
scrollwheel: false,
mapTypeControl: true,
streetViewControl: false,
mapTypeId: google.maps.MapTypeId.SATELLITE
})
.marker([
{address:"46000, Canada", icon: "assets/img/map-icon.png"}
])