我使用传单地图插件。我编写此代码以在 LeafLet 中创建和加载谷歌地图图块
var map = L.map('map').setView([31.2744015, 48.7251283], 18);
// load a tile layer
//Satellite:
L.tileLayer('http://{s}.google.com/vt/lyrs=s&x={x}&y={y}&z={z}', {
maxZoom: 20,
mapTypeId: google.maps.MapTypeId.SATELLITE,
subdomains: ['mt0', 'mt1', 'mt2', 'mt3']
}).addTo(map);
此代码工作正常。But I Want Load another google Map option in this plugin Like 3D View map
但这会完成吗?谢谢你的帮助。