html Google Maps APIの记述例。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html Google Maps APIの记述例。相关的知识,希望对你有一定的参考价值。

<script src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script>
function initialize() {
	var latlng = new google.maps.LatLng(100, 100);
	var mapOptions = {
		center: latlng,
		zoom: 17, 
		scaleControl: true, 
		scrollwheel: false 
	};
	var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
	var marker = new google.maps.Marker({
	    position: latlng,
	    map: map,
	    title: ''
	});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>

以上是关于html Google Maps APIの记述例。的主要内容,如果未能解决你的问题,请参考以下文章

css フォントファミリーの记述例。

xml 【崇高文字】.sublime-snippetの记述例

json 【sublime text】Packages / User / Default.sublime-keymapの记述例

json 【崇高文字】设置 - 用户/主题追加の际の记述

json 【崇高文字】设置 - 用户/主题,颜色方案追加の际の记述

php wp_headの不要记述を削除