我正在使用Google圖書館時間在地圖上顯示它。Google天氣預報圖表
我遇到的問題是顯示的第一個窗口非常小,必須滾動。 如何控制此窗口的大小?
其次,我只想顯示我給出的座標的地圖,並向我展示我想要的最少時間。我怎麼做?
這是我在here代碼:
function generartiempo(36.745,-3.87665,'mapatiempo') {
var mapOptions = {
zoom: 11,
center: new google.maps.LatLng(lat,lng,true),
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var infowindow = new google.maps.InfoWindow();
var map = new google.maps.Map(document.getElementById('mapatiempo'),
mapOptions);
var weatherLayer = new google.maps.weather.WeatherLayer({
temperatureUnits: google.maps.weather.TemperatureUnit.CELSIUS,
windSpeedUnit: google.maps.weather.WindSpeedUnit.KILOMETERS_PER_HOUR
});
weatherLayer.setMap(weatherLayer.getMap() ? null : map);
var cloudLayer = new google.maps.weather.CloudLayer();
cloudLayer.setMap(map);
}
<div id="mapatiempo"></div>
#mapatiempo {
width: 268px;
height: 200px;
border: 1px solid #AAAAA8;
margin-bottom: 5px;
margin-top: 15px;
}
誰能幫助? 編輯示例:http://jsfiddle.net/webyseo/YW2K7/12/ 解決方案? 謝謝!!!!!
您的意思是「使用Google圖書館的時間在地圖上顯示它」,您的意思是天氣預報? –
您是否在問如何更改顯示的地圖大小? – geocodezip
如果我使用此文檔https://developers.google.com/maps/documentation/javascript/layers# WeatherLayer – jcarlosweb