如果你有一個頁面上的融合表得到的地圖,你可以添加一個按鈕,在一個融合表更新的值的信息窗口 - 這樣你就可以改變值從1到3.稍微進一步,你可以添加一個監聽器來點擊地圖標記本身並更改值。
更新值(尤其是如果你是表的所有者)很簡單(https://developers.google.com/fusiontables/docs/v1/using#updateRow或https://developers.google.com/fusiontables/docs/v1/sql-reference#updateRow),它基本上是一種相當標準的SQL操作形式,它使用HTTP來調用請求。
UPDATE <table_id>
SET <column_name> = <value> {, <column_name> = <value> }*
WHERE ROWID = <row_id>
添加聽者一個標記,以PUP了的更新按鈕的信息窗口也很簡單:
https://developers.google.com/maps/documentation/javascript/examples/infowindow-simple
// This example displays a marker at the center of Australia.
// When the user clicks the marker, an info window opens.
function initialize() {
var myLatlng = new google.maps.LatLng(-25.363882,131.044922);
var mapOptions = {
zoom: 4,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
var contentString = '<div id="content">'+
'<div id="siteNotice">'+
'button that call some ajax to fire off a column update' +
'</div>';
var infowindow = new google.maps.InfoWindow({
content: contentString
});
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title: 'Uluru (Ayers Rock)'
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map,marker);
});
}
google.maps.event.addDomListener(window, 'load', initialize);
是存在具有唯一值在該表(任何列除外ROWID) –