html Google Map API
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html Google Map API相关的知识,希望对你有一定的参考价值。
<!--Google Maps-->
<script src="http://maps.google.com/maps/api/js"></script>
<script>
function init_map() {
var var_location = new google.maps.LatLng({{ site.google-map.lat }}, {{ site.google-map.long }});
var var_mapoptions = {
center: var_location,
zoom: 14
};
var var_marker = new google.maps.Marker({
position: var_location,
map: var_map,
title: "{{ site.google-map.title }}"
});
var var_map = new google.maps.Map(document.getElementById("map-container"),
var_mapoptions);
var_marker.setMap(var_map);
}
google.maps.event.addDomListener(window, 'load', init_map);
</script>
<!--Map container-->
<div id="map-container" class="z-depth-1 wow fadeInUp" style="height: 300px"></div>
以上是关于html Google Map API的主要内容,如果未能解决你的问题,请参考以下文章
iOS Google Map API错误
python调用google map api
html Google Map Javascript API v3の基本の使い方
Python Google Map API提供的OSM_type与文档不匹配
google map api no display laravel 5.4
打开eclipse后应该怎样安装 Google map API ?在Android sDK Manager列表中没有找到Google map API 这应该