我的页面中有这个谷歌地图的代码..我想更改经度和纬度的值..它应该来自我的数据库..我将如何完成它?
$(function() {
demo.add(function() {
$('#gmap').gmap({'center': '47.660937,9.569803', 'zoom': 10,'disableDefaultUI':true, 'callback': function() {
var self = this;
self.addMarker({'position': this.get('map').getCenter() }).click(function() {});
}});
}).load();
});
这是我如何从数据库中声明我的变量的时候..
$propertyId = $this->_getParam('propertyId', null);
$propDetail = $propertyDb->getProperty($sessionOutlet, $propertyId);
$this->view->description = $propDetail[0]['Description'];
$this->view->propertyname = $propDetail[0]['PropertyName'];
$this->view->longitude = $propDetail[0]['Longitude'];
$this->view->latitude = $propDetail[0]['Latitude'];