我有这个代码,点击后会提醒我一个地方的纬度和长度。如何整合谷歌地图以显示谷歌地图中的位置。
$("body").on("click",".names",function(){
var latitude = $(this).children(".latitude").text();
alert(latitude);
});
谢谢
Updata ..这是我制作的数据库。因此,当我点击其中一个列表时,它会提示我很长时间。而不是给我提醒lat n lng。我想在谷歌地图中显示这个地方。希望这澄清了我的观点
$('document').ready(function(){
var db = openDatabase('To Do', '1.0', 'To Do', 2 * 1024 * 1024);
db.transaction(function(tx){
tx.executeSql('SELECT * FROM BNames', [], querySucess, errorCB);
});
function querySucess(tx, results){
var len = results.rows.length;
if(len > 0){
for(i = 0; i < len; i++){ //<span here>//
$("#list").append("<ul><li class='names'<br>" + results.rows.item(i).id + " "+ results.rows.item(i).name + "<span class='latitude'> " + results.rows.item(i).latitude + "</span><span class='latitude'> " + results.rows.item(i).longtitude +" </span> [<a href='#' onclick='deletefunction(" + results.rows.item(i).id + ");'>DELETE</a>] </li></ul>");
}
}else{
console.log("You Have No BuildingNames");
}
}
function errorCB(err){
alert("Error" + err.code);
}
});
HTML
<!DOCTYPE>
<html>
<body>
<input type="text" id="name" placeholder="BName"/>
<input type="text" id="latitude" placeholder="latitude"/>
<input type="text" id="longitude" placeholder="longitude"/>
<input type="button" id="Add" value="Add"/>
<div id="list"> </div>
<div id="map-canvas"></div>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>
答案 0 :(得分:0)
你在找这个吗?
$("body").on("click",".names",function(){
//next two lines most likely need replacing.
var latitude = $("#latitude").text();
var longitude = $("#longitude").text();
var myLatlng = new google.maps.LatLng(parseFloat(latitude), parseFloat(longitude));
var mapOptions = {
zoom: 4,
center: myLatlng
}
var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title: 'Hello World!'
});
});