我想将我的谷歌地图位置整合到我的网站(html)中。我找到了这个参考
https://developers.google.com/maps/tutorials/fundamentals/adding-a-google-map
这样做但我不知道如何在那里添加我的信息(就像你在图片中看到的那样)。此外,我想要现代的外观,而不是旧的布局与黑色粗体笔画和无聊的图形。你知道我怎么能这样做吗?
答案 0 :(得分:1)
将此信息包含在您的网站html代码的头部:
<style>
#map_canvas {
width: 500px;
height: 400px;
}
</style>
<script src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script>
function initialize() {
var map_canvas = document.getElementById('map_canvas');
var map_options = {
center: new google.maps.LatLng(YOUR LATITUDE, YOUR LONGITUDE),
zoom: 8,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(map_canvas, map_options)
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
将您的纬度和经度放在上面代码中大写字母的位置。然后把这个div放在你希望地图出现在你网站的地方。
<div id="map_canvas"></div>
您可以通过本网站轻松找到您的经度和纬度: http://universimmedia.pagesperso-orange.fr/geo/loc.htm