我有一個緯度和DB特定用戶的經度谷歌地圖的位置..我通過使用jquery獲取值..這裏是我在做什麼動態填充從數據庫
var auto_refresh = setInterval(
function()
{
$.get('http://localhost/Location/locate', function(data){
$('.latitude').html(data.lat);
$('.longitude').html(data.long);
}, 'json');
}, 1000);
當我越來越從PHP位置我正在做的事情這
'localize' => false,
'latitude' => $latitude,
'longitude' => $longitude,
'address' => $address,
'marker' => true,
我這樣做,但給我的語法錯誤
'latitude' => ?><div class = 'latitude'></div><?php ,
'longitude' => ?><div class = 'longitude'></div><?php ,
以及我想問的另一件事是,這是獲取沒有頁面刷新的位置的最佳方法..或者還有別的東西。
提到,您使用的https://github.com/marcferna/CakePHP-GoogleMapHelper - 這裏的人們不會知道,否則,他們不會能夠以幫助您 –