私のページにGoogleマップのこのコードがあります..経度と緯度の値を変更したかった..それは私のデータベースからのものでなければなりません..どうすればそれを達成できますか?
$(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'];