2013-01-16 31 views
-1

我使用定製引腳的谷歌地圖,但引腳被編入.js文件。鏈接到MVC的JavaScript

我希望能夠以某種方式在我的MVC 4應用的JavaScript鏈接到數據庫中的表,這樣我就可以添加,修改和刪除引腳,而無需他們在代碼中。

想法?

這是1個標記的編程代碼:

//----Logo----// 
var markerLogo= new google.maps.MarkerImage('images/administration.png', 
new google.maps.Size(32, 37), 
new google.maps.Point(0, 0), 
new google.maps.Point(16, 37) 
); 


//----Content----// 
var contentString = 'Contract'; 

//----Content-Link----// 
var infowindow = new google.maps.InfoWindow({ 
    content: contentString 
}); 

//----Marker-Position----// 
var markerPos = new google.maps.LatLng(51.164999, -0.856703); 
var markerInfo = new google.maps.Marker({ 
    position: markerPos, 
    map: map, 
    icon: markerLogo, 
    title: "Contract" 
}); 

//----Info-Function----// 
google.maps.event.addListener(this, 'click', function() { 
    open(map, this); 

}); 

回答

0

我不知道這是你需要什麼,但你可以看看KnockoutMVC項目。這個開源框架允許生成基於服務器端的客戶端代碼(是的,這是我們的R部門的一個產品,說實話)。