本文介绍了使用谷歌地图显示存储在数据库中的位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用谷歌地图来显示我的数据库中存在的位置,但我不知道它应该如何运作。你能帮帮我吗?我只知道如何从谷歌获取 API密钥。我非常感谢你的帮助。谢谢
Hi, I am trying to use a google map to display locations that exist in my database, but I don't how it should work. Could you please help me with this. I only know how to get the API key from google. Your help will me much appreciated. Thank you
推荐答案
xmlhttp.open("Get","https://www.google.com/maps/preview?q="+placename,true)
xmlhttp.send(null)
xmlhttp.onreadystatechange = function () {
if (xmlhttp1.readyState == 4 ||xmlhttp.Status="ok") {
var x = xmlhttp.responseText;
document.getElementById("iframe").innerHTML=x;
}
}
无需api以及与javascript相关的所有其他详细信息
No need of api and all other details related to javascript
这篇关于使用谷歌地图显示存储在数据库中的位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!