我有一个带地址的MySql数据库,我想嵌入google maps API显示一个地址。
如何使用Google Maps API嵌入显示网页上其中一个地址的地图。
请帮助
谢谢:D
答案 0 :(得分:1)
您想知道在地图中标记地点的纬度和经度值。 您可以使用Google API获取经度和纬度。将此值传递给Google MAP。 Get latitude and longitude点击此链接可使用Google API获取纬度和经度
地图画布的脚本
<div id="map_canvas" style="width:650px; height:300px"></div>
lat = latitude value from Google API
lon = longitude value from Google API
var mapOptions = {
center: new google.maps.LatLng(lat,lon),
zoom: 8,
mapTypeId: google.maps.MapTypeId.ROADMAP,
};
var map = new google.maps.Map(document.getElementById("map_canvas"),mapOptions);
答案 1 :(得分:0)
您可以添加iframe将MySQL数据库中的地址作为URL参数传递。
<iframe width="640" height="480" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.it/maps?q=<?php echo $yourAddress; ?>&output=embed"></iframe>