私はそれを地図上に表示するGoogleライブラリ時間を使用しています。
私が抱えている問題は、表示される最初のウィンドウが非常に小さく、スクロールする必要があることです。このウィンドウのサイズを制御するにはどうすればよいですか?
次に、指定した座標の地図のみを表示し、必要な時間を最小限に抑えたいと思います。それ、どうやったら出来るの?
これはここにある私のコードです:
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/ ソリューション?ありがとう!!!!!